INPUT_OBJECT
UpdateCollectionInput
UpdateCollectionInput accepts a collection ID and parameters to update a collection.
link GraphQL Schema definition
1 input UpdateCollectionInput { 4 2 # The id of the collection to be updated. 3 : ID! 7 5 # The updated description of the collection. 6 : String 10 8 # The itemID of the item whose thumbnail will be collection's thumbnail. 9 : UpdateCollectionThumbnailInput 13 11 # The updated title of the collection. 12 : String 16 14 # The updated type of the collection. 15 : CollectionType 17 }