ENUM
EngineFieldType
An enum containing valid custom engine field types.
link GraphQL Schema definition
1 enum EngineFieldType { 2 3 # A number, in float format 4 5 6 # A pick list that allows the user to choose one of a set of allowed values. 7 8 9 # A pick list that allows the user to choose any number of a set of allowed 10 # values. 11 12 13 # A plain text field 14 15 16 # A dynamic list of schemas that will be populated by the client 17 18 }