INPUT_OBJECT

AddCollectionItemInput

AddCollectionItemInput accepts a collectionID and item ID and parameters to add the item to a collection.

link GraphQL Schema definition

1input AddCollectionItemInput {
4
2# The id of the collection.
3collectionID: ID!
7
5# The id of the item of which will be added to the collection.
6itemID: ID!
10
8# The type of item ie. video.
9itemType: String!
11}