OBJECT

CollectionField

link GraphQL Schema definition

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