page.graphql 475 B

123456789101112131415
  1. # Returns information about pagination in a connection, in accordance with the
  2. # Relay specification.
  3. type PageInfo {
  4. # The cursor corresponding to the last node in edges.
  5. endCursor: String
  6. # Whether there are more pages to fetch following the current page.
  7. hasNextPage: Boolean!
  8. # Whether there are any pages prior to the current page.
  9. hasPreviousPage: Boolean!
  10. # The cursor corresponding to the first node in edges.
  11. startCursor: String
  12. }