Interface PaginationArgs

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

Param: offset

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

Param: limit

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

Generated using TypeDoc