# PaginationPageInfo

PaginationPageInfo

Information to aid in pagination.

**Fields:**
- `endCursor`: `String` - The last cursor in the list. It can be used to fetch the next page.
- `hasNextPage`: `Boolean!` - When set to true, it means there is a next page available.
- `hasPreviousPage`: `Boolean!` - When set to true, it means there is a previous page available. Will always return false for now as we only support forward pagination.
- `startCursor`: `String` - The first cursor in the list. It can be used to fetch the previous page.