Pagination
When querying content items, you can supply arguments that allow you to paginate the query response. Pagination allows you to request a certain amount of records at the same time. The default limit is 25
content items, and the maximum is 100
. Use the attribute total
to retrieve the total number of items, which is useful for creating pagination links.
Use per_page
to limit the number of results:
{
ProductItems(per_page: 5) {
items {
name
}
total
}
}
Provide the page
argument to go to a specific offset (page
is multiplied by the default per_page
value 25
):
{
ProductItems(page: 2) {
items {
name
}
total
}
}