INPUT_OBJECT

CreateEngineField

link GraphQL Schema definition

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