OBJECT

PageInfo

PageInfo is a special field which contains information about the page, specifically the cursors which the page starts and ends, and whether or not the client can forward-paginate or backward-paginate.

This is part of the Relay Cursor Connections Specification: https://facebook.github.io/relay/graphql/connections.htm.

link GraphQL Schema definition

1type PageInfo {
2
3hasNextPage: Boolean!
4
5hasPreviousPage: Boolean!
6
7}

link Required by