PageInfo
(OBJECT)
Information about lists' paging
link GraphQL Schema definition
- type PageInfo {
- # listing has got next page
- : Boolean!
- # listing has got a previous page
- : Boolean!
- # index pointer (ordinal position/offset) of first record on next page of results
- : Int
- # index pointer (ordinal position/offset) of first record on previous page of
- # results
- : Int
- # index of the currently listed page
- : Int
- # total number of pages. Depends on the set limit for the number of records per
- # page, the default limit is 30 records / page
- : Int
- # total number of records found
- : Int
- }
link Require by
- InvoiceListPageable list of invoices (cursor)
- IPaginationResultsPaging info for SomeobjectLists
- OrderListPageable list of orders (cursor)
- PreinvoiceListPageable list of preinvoices (cursor)
- ProductListPageable list of products (cursor)
- WarehouseItemListPageable list of warehouse items (cursor)
- WebPageListPageable list of web pages (cursor)