OBJECT

PageInfo

PageInfo must contain fields hasPreviousPage and hasNextPage, both of which return non‐null booleans.

link GraphQL Schema definition

  • type PageInfo {
  • # hasNextPage will be false if the client is not paginating with first,
  • #
  • # or if the client is paginating with first, and the server has determined
  • #
  • # that the client has reached the end of the set of edges defined by their
  • #
  • # cursors.
  • hasNextPage: Boolean!
  • # hasPreviousPage will be false if the client is not paginating with last,
  • #
  • # or if the client is paginating with last, and the server has determined
  • #
  • # that the client has reached the end of the set of edges defined by their
  • #
  • # cursors.
  • hasPreviousPage: Boolean!
  • }