ENUM

EngineFieldType

An enum containing valid custom engine field types.

link GraphQL Schema definition

1enum EngineFieldType {
2
3# A number, in float format
4Number
5
6# A pick list that allows the user to choose one of a set of allowed values.
7Picklist
8
9# A pick list that allows the user to choose any number of a set of allowed
10# values.
11MultiPicklist
12
13# A plain text field
14Text
15
16# A dynamic list of schemas that will be populated by the client
17SchemaSelection
18}