remove_work_item_relation
Removes a specified relation, either a built-in dependency or a custom link, between two work items. Use is_dependency to choose which type to remove.
Instructions
Remove ONE relation between two work items.
A built-in dependency and a custom relation are removed independently - removing one leaves the other intact. Set is_dependency from the relation the user named (see list_work_item_relations): True for a built-in dependency (blocking, blocked_by, start/finish ordering), False for a custom relation.
Args: project_id: UUID of the project. work_item_id: UUID of the source work item. related_work_item_id: UUID of the related work item. is_dependency: True to remove a built-in dependency, False to remove a custom relation.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| work_item_id | Yes | ||
| is_dependency | Yes | ||
| related_work_item_id | Yes |