OBJECT

EngineDependency

link GraphQL Schema definition

1type EngineDependency {
2
3# TODO maps to values in engineCategory.data_field?
4# Must be a valid categoryType from an existing EngineCategory.
5dependencyType: String!
6
7# Asset type to expect previous engine to produce
8assetType: String
9
10# The engine category corresponding to this dependency
11category: EngineCategory
12
13}