OBJECT

EntityList

link GraphQL Schema definition

1type EntityList implements Page {
2
3# The starting index for records that were returned in this query.
4offset: Int!
5
6limit: Int!
7
8# Number of records returned in this response
9count: Int
10
11records: [Entity]
12
13}