OBJECT

CollectionList

link GraphQL Schema definition

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