OBJECT

GroupList

link GraphQL Schema definition

1type GroupList implements Page {
2
3records: [Group]
4
5# The starting index for records that were returned in this query.
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}