Hello there @Roy!
It looks like in this case, a good solution for this could be using pagination.
Here is an article explaining the different things you can do in order to avoid hitting the rate limit.
Hope it helps!
Cheers,
Matias
Hello Matias and thank you for the quick reply.
Pagination sounds great solution but I wonder how can I implement it via the API.
Eventually, I need to access all the column values in the 4500~ items on the board - so, is it possible to create a request to query items between 100 to 200 for example?
Hello @Roy!
You can use a query like this one:
{
boards(ids: 1122334455) {
items(limit: 100, page: 1) {
column_values {
value
text
}
}
}
}
Then you would go to page 2, then page 3 and so on until the response you get has less than 100 items, and then you will know there are no more pages to go through.
If your board is very big (lots of columns, lots of mirror columns) you might want to play with the limit. The smaller the limit, the smaller is the chance of hitting a timeout (which is probably the issue here).
Cheers,
Matias
Unito is a great app and can pull in data from a variety of sources and I had no issues bring in 9600+ rows onto a single board.
Can be one way or bidirectional on all mapped fields.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.