INPUT_OBJECT

UpdateCollectionInput

UpdateCollectionInput accepts a collection ID and parameters to update a collection.

link GraphQL Schema definition

1input UpdateCollectionInput {
4
2# The id of the collection to be updated.
3collectionID: ID!
7
5# The updated description of the collection.
6description: String
10
8# The itemID of the item whose thumbnail will be collection's thumbnail.
9thumbnailInput: UpdateCollectionThumbnailInput
13
11# The updated title of the collection.
12title: String
16
14# The updated type of the collection.
15type: CollectionType
17}