Interface PaginationArgs

Defines the parameters for paginating query results, including the starting position and maximum number of items to return.

Specifies the starting position of the query result. Default is 0.

Specifies the maximum number of items to return. Default is 25.

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

Properties

Properties

limit?: number
offset?: AnyNumber