Mutation

remove_tags_from_nodes

Remove tags from nodes in the site tree. This can be used to remove tags from sites and folders.

Arguments

input: RemoveTagsFromNodesInput!


Input Fields

tag_ids(): [ID!]!
The IDs of the tags to remove.
node_ids(): [ID!]!
The IDs of the sites or folders to remove tags from.

Return Fields

successful(): Boolean!

Example

Query
mutation RemoveTagsFromNodes($input: RemoveTagsFromNodesInput!) {
  remove_tags_from_nodes(input: $input) {
    successful
  }
}
Variables
{
  "input": {
    "tag_ids": ["2"],
    "node_ids": ["10", "15"]
  }
}
Result
{
  "data": {
    "remove_tags_from_nodes": {
      "successful": true
    }
  }
}