Delete issue relation
redmine_delete_issue_relationRemove a dependency link between issues to correct wrong relations, using the relation ID obtained from listing issue relations.
Instructions
Remove a relation (dependency link) between two issues — the cleanup path for a wrong link, e.g. a false "duplicates" or an inverted "blocks". Takes the RELATION id, not an issue id: call redmine_list_issue_relations with the issue_id first to find the relation and its id. Deleting removes the link in both directions at once (Redmine stores one record and derives the inverse), so there is no second side to clean up. Nothing but the link is touched — both issues, their history, and their other relations are untouched — and the link is restored by a single redmine_create_issue_relation call, so this is far less consequential than deleting an issue. A repeated call fails with a not-found error rather than succeeding quietly.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_relation_id | Yes | Numeric id of the RELATION to delete — the `id` field of a relation, NOT an issue id. Get it from `redmine_list_issue_relations` (call it with the issue_id first and pick the relation you mean). Passing an issue id here usually deletes a real but unrelated link rather than failing, so never guess this value. |