PageInfo

(OBJECT)

Information about lists' paging

link GraphQL Schema definition

  • type PageInfo {
  • # listing has got next page
  • hasNextPage: Boolean!
  • # listing has got a previous page
  • hasPreviousPage: Boolean!
  • # Index pointer (ordinal position/offset) of first record on next page of results
  • nextCursor: Int
  • # Index pointer (ordinal position/offset) of first record on previous page of
  • # results
  • previousCursor: Int
  • pageIndex: Int
  • totalPages: Int
  • }