PageInfo
Page metadata for the cursor-based Connection pagination pattern.
type PageInfo {
startCursor: String
endCursor: String
hasNextPage: Boolean!
hasPreviousPage: Boolean!
}
Fields
Name | Type | Description |
---|---|---|
startCursor | String | Cursor pointing to the first entry of the page. |
endCursor | String | Cursor pointing to the last entry of the page. |
hasNextPage | Boolean! | Indicates if there are more pages after the current one. |
hasPreviousPage | Boolean! | Indicates if there are previous pages before the current one. |