OBJECT

EngineList

link GraphQL Schema definition

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