Schema Documentation

createProductTag

Description

The payload for the createProductTag mutation

Response

Returns a CreateProductTagPayload

Arguments
NameDescription
input - CreateProductTagInput! Input for the createProductTag mutation

Example

Query
mutation createProductTag($input: CreateProductTagInput!){
  createProductTag(input: $input){
    clientMutationIdproductTag {
      ...ProductTagFragment
    }
  }
}
Variables
{"input":CreateProductTagInput}
Response
{"data":{"createProductTag":{"clientMutationId":"xyz789","productTag":ProductTag}}}