Schema Documentation

updateTag

Description

The payload for the UpdateTag mutation

Response

Returns an UpdateTagPayload

Arguments
NameDescription
input - UpdateTagInput! Input for the UpdateTag mutation

Example

Query
mutation updateTag($input: UpdateTagInput!){
  updateTag(input: $input){
    clientMutationIdtag {
      ...TagFragment
    }
  }
}
Variables
{"input":UpdateTagInput}
Response
{"data":{"updateTag":{"clientMutationId":"abc123","tag":Tag}}}