OBJECT
CollectionField
link GraphQL Schema definition
1 type CollectionField { 2 3 # Identifier of the field. 4 ID : 5 6 # Collection field can be deleted only if it's archived. 7 DateTime : 8 9 # Identifier of the collection this field belongs to. 10 ID : 11 12 # Name of the field. 13 String : 14 15 # Hint. 16 String : 17 18 # Defines the order of the field. 19 Int : 20 21 # Type of the field. 22 CollectionFieldType : 23 24 # If true, the collection item value for this field must be not empty. 25 Boolean : 26 27 # If true, the value for this field will be used as a "title" of the collection 28 # item. 29 Boolean : 30 31 # Available options for [“SINGLE_CHOICE”, “MULTI_CHOICE”, “DROPDOWN”] 32 CollectionChoiceOption] : [ 33 34 }