OBJECT

PageInfo

Information about pagination in a connection.

link GraphQL Schema definition

1type PageInfo {
2
3# When paginating forwards, are there more items?
4hasNextPage: Boolean!
5
6# When paginating backwards, are there more items?
7hasPreviousPage: Boolean!
8
9# When paginating backwards, the cursor to continue.
10startCursor: String
11
12# When paginating forwards, the cursor to continue.
13endCursor: String
14
15}