I am trying to extract data from monday.com from Qlik.I am struggling with pagination.So,Monday.com is Graphql based platform and Graphql supports cursor based pagination.Do Monday.com supports cursorbased pagenation??
For eg :below Query works.
{
boards(limit:10,page:1) {
columns {
id
}
}
}
When I try to add fields for cursorbased pagination,it shows below error message-
“message”: “Field ‘pageInfo’ doesn’t exist on type ‘Board’”
Query used is as follows-
{
boards(limit:10,page:1) {
pageInfo{hasNextPage totalCount}
columns {
id
}
}
}
Kindly help with the pagenation.