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
  • # index of the currently listed page
  • pageIndex: Int
  • # total number of pages. Depends on the set limit for the number of records per
  • # page, the default limit is 30 records / page
  • totalPages: Int
  • # total number of records found
  • totalRecords: Int
  • }