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