removeTags

Remove tags from the system with optional repository tag updates.

Examples

mutation RemoveTags($deleteTagsInput: DeleteTagsInput!) {
  removeTags(deleteTagsInput: $deleteTagsInput) {
    acknowledge
  }
}

Variables

This is an example input showing all available input fields. Only fields marked as required in the schema are mandatory.

{
  "deleteTagsInput": {
    "filters": {
      "tagId": ["ox_tag_1"]
    }
  }
}

Arguments

You can use the following argument(s) to customize your removeTags mutation.

Argument
Description
Supported fields

deleteTagsInput DeleteTagsInput! required

Input specifying which tags to delete and whether to update repository tags

Fields

Return type: Acknowledge

You can use the following field(s) to specify what information your removeTags mutation will return. Please note that some fields may have their own subfields.

Field
Description
Supported fields

acknowledge Boolean!

Boolean indicating if the operation was successful

Last updated