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