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 # Type of the field. 19 CollectionFieldType : 20 21 # If true, the collection item value for this field must be not empty. 22 Boolean : 23 24 # If true, the value for this field will be used as a "title" of the collection 25 # item. 26 Boolean : 27 28 # Available options for [“SINGLE_CHOICE”, “MULTI_CHOICE”, “DROPDOWN”] 29 CollectionChoiceOption] : [ 30 31 }