OBJECT

EngineField

Represents a custom input field on an engine.

link GraphQL Schema definition

1type EngineField {
2
3# Maximum value, in float format. Applies only to fields of type Number.
4max: Float
5
6# Minimum value, in float format. Applies only to fields of type Number.
7min: 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.
11step: Float
12
13# The field type.
14type: EngineFieldType!
15
16# General information about the field, such as a description.
17info: String
18
19# A machine-readable name, or key, for the field.
20name: String!
21
22# A human-readable label for the field.
23label: String
24
25# A set of allowed values for the field. Applies only to fields of type
26# picklist or multi-picklist.
27options: [EngineFieldPicklistOption!]
28
29# An optional default value for the field. Taken in string format, but
30# applies to all field types.
31defaultValue: 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.
35defaultValues: [String!]
36
37# specifies whether the field is optional
38required: Boolean
39
40}

link Required by