Hey @danetportal,
Your query is correct. Null values may appear for columns values that are client side calculated, such as item id, creation log… for most column values the “text” field will display the actual value. For special columns like the formula and percentage columns there will be no value displayed.
Collections of labels should be by their ID’s in the “value” field and by their display name in the “text” field. Dates should works in both “text” and “value”.
Are there specific columns you’re not getting as expected?
Ok. I got it.
But now i have another issue.
query {
boards{
id
name
}
}
I have access to more than 50 boards in my profile, but on this request I get only 25 of them. Why is that?
Also about API limitations - if I exceed them, will I just increase the query execution time or will it immediately break?
Our default limit is 25. You can override it using the limit parameter like so:
query {
boards (limit: 60) {
id
name
}
}
If you will be using a high complexity query that the limit doesn’t work with you can also use our pagination mechanism like so:
query {
boards (limit: 20, page: 1) {
id
name
}
}
Thank you very much for your help and assistance.
What about
Also about API limitations - if I exceed them, will I just increase the query execution time or will it immediately break?
?
Also, we have a lot of data in the info boxes, but it looks like I can’t get it through the API?
I try uselimit:100
to get all data, but will get response like:
monday.com is having some technical issues
Can i somehow avoid this?