OBJECT
PaginatorInfo
Pagination information about the corresponding list of items.
link GraphQL Schema definition
- type PaginatorInfo {
- # Total count of available items in the page.
- Int! :
- # Current pagination page.
- Int! :
- # Index of first item in the current page.
- Int :
- # If collection has more pages.
- Boolean! :
- # Index of last item in the current page.
- Int :
- # Last page number of the collection.
- Int! :
- # Number of items per page in the collection.
- Int! :
- # Total items available in the collection.
- Int! :
- }