OBJECT

PageInfo

Information about pagination in a connection.

  • type PageInfo {
  • # Indicates whether more edges exist following the set defined by the clients
  • # arguments.
  • hasNextPage: Boolean!
  • # Indicates whether more edges exist prior the set defined by the clients
  • # arguments.
  • hasPreviousPage: Boolean!
  • # When paginating backwards, the cursor to continue.
  • startCursor: String
  • # When paginating forwards, the cursor to continue.
  • endCursor: String
  • }