Hi,
Can anyone please tell me how to exclude columns in my POST request?
This will get all the columns for that board and item:
{
boards(ids: 690783129) {
items(ids: 732774573) {
column_values {
id
text
}
}
}
If I change it to include:
column_values(ids: column1,column2,column3)
I can get only the one I want, but is there a way to exclude columns I don’t want? So I can run the query and it will only get columns 1 and 3, and will exclude 2.
Thanks heaps,
Matt
}