OBJECT

PageInfo

Information about pagination in a connection.

link GraphQL Schema definition

  • type PageInfo {
  • # When paginating forwards, the cursor to continue
  • endCursor: String
  • # Indicates if there are more pages to fetch
  • hasNextPage: Boolean!
  • # Indicates if there are any pages prior to the current page
  • hasPreviousPage: Boolean!
  • # When paginating backwards, the cursor to continue
  • startCursor: String
  • }

link Require by