Pagination Object
Description
Pagination metadata providing information about the current page, total count, and available pages.
Declaration
type Pagination {
limit: Int
count: Int
page: Int!
pages: Int!
hasMore: Boolean
}
Fields
| Name | Type | Description |
|---|---|---|
limit | Int | Number of items per page in the current result set. |
count | Int | Total number of items across all pages. |
page | Int! | Current page number (1-based). |
pages | Int! | Total number of pages available. |
hasMore | Boolean | Whether there are more pages available beyond the current page. |