OBJECT

EventList

link GraphQL Schema definition

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