I have a very simple query:
query
{
items_by_column_values(board_id: 111111111, column_id: "status9", column_value: "Completed")
{ id name }
}
Which returns exactly 1000 records, but that is not everything.
So I thought I would add a limit and paging. But using Limit:500, Page: 3 is completely empty. Same with a Limit of 100 and Page 11…
It seems as though items_by_column_values is hard-coded to a maximum of 1000 items…
Anyone have thoughts on how to get the remaining records??
*These missing records do show up if I search by Name instead of Status. And when I look at the detail, their status9 value is indeed showing Completed. So I am not sure what my next-steps should be…