OBJECT

BuildList

link GraphQL Schema definition

1type BuildList implements Page {
2
3records: [Build]
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}