Contents

QueryPagination

Controls the page size and starting offset for query results.

Declaration

object QueryPagination

Properties

NameTypeDescription
pageSizeint32

The number of items per page.

offsetint32

The starting position for pagination, zero-based.

fetchTotalCountboolean

Whether to include the total count in the pagination response. Set to true to include the total result count in the QueryPaginationResult response.

Discussion

The QueryPagination controls the page size and starting offset for query results.

Example

{
  "pageSize": 25,
  "offset": 50,
  "fetchTotalCount": true
}

See Also

Query Objects