Skip to main content

i have date like’updated date which capture all the clahes in monday.com but while i download data i need to download only changes to owner and status

but i see the query capture all the changes

can i restrict data to extract only owner and status?

Hello there @Channa,


You can specify the IDs of the columns you want to get the column values for with a query like this one:


{
boards(ids:1234567890) {
items_page {
items {
column_values(ids: ["people", "status"]) {
value
text
}
}
}
}
}

More information here.


Cheers,

Matias


Reply