schema.graphql
fragments.graphql
(OBJECT)
Information about lists' paging
type PageInfo {# listing has got next pagehasNextPage: Boolean! # listing has got a previous pagehasPreviousPage: 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 }