OBJECT

JobList

link GraphQL Schema definition

1type JobList implements Page {
2
3# Jobs retrieved
4records: [Job]
5
6# The starting index for records that were returned in this query.
7offset: Int!
8
9# Maximum number of results that were retrieved in this query; page size
10limit: Int!
11
12# Number of records returned in this response
13count: Int
14
15}