INTERFACE

Page

Common fields used by queries and fields that support paging to represent a single page of results.

link GraphQL Schema definition

1interface Page {
2
3# Provide an offset to skip to a certain element in the result, for paging.
4offset: Int!
5
6# Maximum number of results that were retrieved in this query; page size
7limit: Int!
8
9# Number of records returned in this response
10count: Int
11
12}

link Required by