INTERFACE

Collection

link GraphQL Schema definition

1interface Collection {
2
3id: ID
4
5# Collection can be deleted only if it's archived.
6archivedAt: DateTime
7
8# Unique within the type, scope and company.
9name: String
10
11# Detailed information about the collection.
12description: String
13
14# Icon
15icon: String
16
17# Specifies the type of the collection.
18type: CollectionType
19
20# User scope items can have a user assigned to them.
21scope: CollectionScope
22
23# Custom fields defined for this collection.
24collectionFields: [CollectionField]
25
26}