I want to fetch all the boards schema in all the workspaces. Currently i’m using the graphql query “boards {id name}”. But there is no information about, how many boards this will return. There is no cursor object here to indicate whether the response list is complete or not.
For now i’m just thinking of incrementing the page parameter and keep hitting the api, until the response returns empty board. But want to make sure whether there is an easy way to do it.