Pagination information for paginated queries

interface PageInfo {
    hasNextPage: boolean;
    endCursor: undefined | null | string;
}

Properties

hasNextPage: boolean

Whether there are more results available

endCursor: undefined | null | string

Cursor to use for fetching next page, if available