OBJECT

PageInfo

link GraphQL Schema definition

  • type PageInfo {
  • # Cursor for the prior page if exists, otherwise matches start
  • priorCursor: String!
  • # Start cursor for the entry; can be used to replay this page
  • startCursor: String!
  • # End cursor; this can be used to request the next page
  • endCursor: String!
  • # True if more data is available, false otherwise
  • hasNextPage: Boolean!
  • hasPriorPage: Boolean!
  • # Number of records returned
  • count: Int!
  • }