PaginationInput Input
Description
Input parameters for pagination and sorting.
Declaration
input PaginationInput {
limit: Int
page: Int
sort: String
order: Int
}
Fields
| Name | Type | Description |
|---|---|---|
limit | Int | Number of items per page. Your requested size is used if it does not exceed the server-enforced maximum limit. |
page | Int | The requested page number. Defaults to 1 if not specified. |
sort | String | Field name to sort by. |
order | Int | Sort order (1 for ascending, -1 for descending). |