Schema Documentation

updateProductTag

Description

The payload for the UpdateProductTag mutation

Response

Returns an UpdateProductTagPayload

Arguments
NameDescription
input - UpdateProductTagInput! Input for the UpdateProductTag mutation

Example

Query
mutation updateProductTag($input: UpdateProductTagInput!){
  updateProductTag(input: $input){
    clientMutationIdproductTag {
      ...ProductTagFragment
    }
  }
}
Variables
{"input":UpdateProductTagInput}
Response
{"data":{"updateProductTag":{"clientMutationId":"abc123","productTag":ProductTag}}}