OBJECT

PageInfo

Information about pagination in a connection.

link GraphQL Schema definition

  • type PageInfo {
  • # When paginating forwards, are there more items?
  • hasNextPage: Boolean!
  • # When paginating backwards, are there more items?
  • hasPreviousPage: Boolean!
  • # When paginating backwards, the cursor to continue.
  • startCursor: Base64
  • # When paginating forwards, the cursor to continue.
  • endCursor: Base64
  • }

link Require by