Pagination
Some API calls return paginated responses with a PageInfo object at the top level:
{
"pageInfo": {
"endCursor": "...",
"totalCount": 777
},
...
}
Pagination Parameters
Paginated calls accept additional parameters:
after string
The previous endCursor.
take number
The maximum number of results to return. Default: 50