OBJECT

PageInfo

Relay-compatible paging support. Please see: GraphQL Cursor Connections Specification

link GraphQL Schema definition

  • type PageInfo {
  • # Cursor of the last element in the page. Can be null if there are no results
  • endCursor: String
  • hasNextPage: Boolean!
  • hasPreviousPage: Boolean!
  • # Cursor of the first element in the page. Can be null if there are no results
  • startCursor: String
  • }

link Require by