interface QueryResponsePagination {
    firstSortValues: unknown;
    lastSortValues: unknown;
    totalItems: number;
}

Properties

firstSortValues: unknown

The sort values of the first item in the result set. Use this in the searchBefore field of an ensuing request.

lastSortValues: unknown

The sort values of the last item in the result set. Use this in the searchAfter field of an ensuing request.

totalItems: number

Total items matching the criteria.

Generated using TypeDoc