Interface PaginationArguments<Cursor>

interface PaginationArguments<Cursor> {
    cursor?: Cursor;
    limit?: null | number;
}

Type Parameters

  • Cursor

Properties

Properties

cursor?: Cursor

Optional paging cursor

limit?: null | number

Maximum item returned per page