InterfacePageInfo
Interface: InterfacePageInfo
Defined in: src/types/shared-components/DataTable/pagination.ts:7
Pagination state information for cursor-based pagination.
Used in GraphQL Relay connection pattern to track pagination cursors and availability of next/previous pages.
Properties
endCursor?
optionalendCursor:string
Defined in: src/types/shared-components/DataTable/pagination.ts:15
Cursor pointing to the end of the current result set
hasNextPage
hasNextPage:
boolean
Defined in: src/types/shared-components/DataTable/pagination.ts:9
Whether more items exist after the current set (has next page)
hasPreviousPage
hasPreviousPage:
boolean
Defined in: src/types/shared-components/DataTable/pagination.ts:11
Whether items existed before the current set (has previous page)
startCursor?
optionalstartCursor:string
Defined in: src/types/shared-components/DataTable/pagination.ts:13
Cursor pointing to the start of the current result set