OBJECT

ConnectionPageInfo

Info about the current connection page slice

link GraphQL Schema definition

1type ConnectionPageInfo {
2
3# The opaque id of the cursor representing the index of the first element in this
4# page
5startCursor: String!
13
6# The opaque id of the cursor representing the index of the last element in this
7# page
8endCursor: String!
13
9# Whether there are more pages in the results
10hasNextPage: Boolean!
13
11# Whether there are previous pages in the results
12hasPreviousPage: Boolean!
14
15}