OBJECT
EngineField
Represents a custom input field on an engine.
link GraphQL Schema definition
1 type EngineField { 2 3 # Maximum value, in float format. Applies only to fields of type Number. 4 Float : 5 6 # Minimum value, in float format. Applies only to fields of type Number. 7 Float : 8 9 # Numerical step by which the value should be incremented or decremented in 10 # the user interface, in float format. Applies only to fields of type Number. 11 Float : 12 13 # The field type. 14 EngineFieldType! : 15 16 # General information about the field, such as a description. 17 String : 18 19 # A machine-readable name, or key, for the field. 20 String! : 21 22 # A human-readable label for the field. 23 String : 24 25 # A set of allowed values for the field. Applies only to fields of type 26 # picklist or multi-picklist. 27 EngineFieldPicklistOption!] : [ 28 29 # An optional default value for the field. Taken in string format, but 30 # applies to all field types. 31 String : 32 33 # Optional default values to apply to a picklist. This field 34 # should only be set for a field of type multi-picklist. 35 String!] : [ 36 37 # specifies whether the field is optional 38 Boolean : 39 40 }