Controls the number of results that are returned and the starting position of those results.

parameter specifies the starting position of the query result within the set of data. Default is 0.

specifies the maximum number of items or records to return in a query result. Default is 25.

interface PaginationArgs {
    limit?: number;
    offset?: AnyNumber;
}

Properties

Properties

limit?: number
offset?: AnyNumber