Interface CursorPaginationOptions

interface CursorPaginationOptions {
    filter: CursorPaginationFilter;
    limit?: number;
    needCountTotal: false;
    orderBy: CursorOrderBy;
}

Properties

Filter options.

limit?: number

Limit of items to return.

needCountTotal: false

If true, the total count of items will be returned.

orderBy: CursorOrderBy

Order by options.