Mutation

delete_tag

Deletes a tag.

Arguments

input: DeleteTagInput!


Input Fields

tag_id(): ID!
The unique identifier of the tag to delete.

Return Fields

successful(): Boolean!
Whether the tag was successfully deleted.

Example

Query
mutation DeleteTag($input: DeleteTagInput!) {
  delete_tag(input: $input) {
    successful
  }
}
Variables
{
  "input": {
    "tag_id": "4"
  }
}
Result
{
  "data": {
    "delete_tag": {
      "successful": true
    }
  }
}