@kadin
To get more than 100 results from a GraphQL query, you can use pagination techniques such as cursor-based or offset-based pagination.
Example query using cursor-based pagination:
1 2 3 4 5 6 7 8 9 10 11 |
{
items(first: 100, after: "cursorValue") {
nodes {
// item fields
}
pageInfo {
endCursor
hasNextPage
}
}
}
|
Example query using offset-based pagination:
1 2 3 4 5 |
{
items(offset: 100, limit: 100) {
// item fields
}
}
|
Keep in mind that the specific pagination implementation may vary depending on the GraphQL server you are querying. Consult the server's documentation for the exact pagination strategy supported.