QueryPagination
Controls the page size and starting offset for query results.
Declaration
object QueryPaginationProperties
| Name | Type | Description |
|---|---|---|
pageSize | int32 | The number of items per page. |
offset | int32 | The starting position for pagination, zero-based. |
fetchTotalCount | boolean | Whether to include the total count in the pagination response. Set to |
Discussion
The QueryPagination controls the page size and starting offset for query results.
Example
{
"pageSize": 25,
"offset": 50,
"fetchTotalCount": true
}