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