INTERFACE

CollectionItem

link GraphQL Schema definition

1interface CollectionItem {
2
3# Unique identifier for the collection item.
4id: ID
5
6# Timestamp of when the collection item was created.
7createdAt: DateTime
8
9# Identifier of the collection to which this item belongs.
10collectionId: ID
11
12# Identifier of the user who created the collection item.
13createdById: ID
14
15# List of values associated with the collection item.
16collectionItemValues: [CollectionItemValue]
17
18# User who created the collection item.
19createdBy: User
20
21}