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