Hi,
We have an existing iOS app where users can store some data and now we want to add integration with Monday.com by using GraphQL API. The integration needs to work in the way that the app loads the data from Monday.com and stores in in the device and once the user does some updates locally it updates Monday.com board.
Some users have a lot of data in their boards, like more than 3k items. And they will continue adding items. I am looking for an option to limit a number of returned items by the API.
If I have a raw access to the API I would add an option to filter items by their column values.
In example, our users can use checkbox and check some items that are necessary in the app which will limit number of API calls that we need to do in order to load the data in the app.
boards(ids:my_board_id) {
id,
name
items(filter_by_column_id: checkbox_column_id, filter_by_column_value: true) {
id
name
updated_at
column_values {
id
title
value
text
type
}
}
}
Is it possible to add something similar to your API?