I am using the Monday API to extract data from 1 board! The problem I am having is that this board, whilst it has a tiny number of rows, has tons of columns, and so I keep on running into rate limitations.
I have tried adding limit and page restrictions, but I need my query to run under 9 minutes if I want to use it on a cloud function. The query is super simple:
{boards(ids: ) {items(limit: 20, page:1) {name column_values {title id text}}}}’
Can anyone help? Or is it possible to remove the rate limitations for this query?
FYI, I also tried to replace the text with the json values object, but sadly, this does not contain the full information I need for every column.
Also, following up on this, I calculated the complexity of my query and its a tiny 34. I don’t know why i am not able to fetch the data, this is an urgent matter can somebody please help?
