List issue relations
redmine_list_issue_relationsFetch dependency links between Redmine issues to identify blockers and sequence work. Specify an issue ID for all relations or a relation ID for a single link.
Instructions
Read the relations (dependency links) between issues — use it before reporting blockers or sequencing work. Pass exactly one of issue_id (all relations of that issue, returned as { relations: [...] }) or issue_relation_id (one relation by its own id). Each relation reads as "issue_id issue_to_id": issue_id is the SOURCE and issue_to_id the TARGET. Directions: "blocks" — the source blocks the target, so the target cannot be finished first; "blocked" — the source is blocked by the target; "precedes" — the source must finish before the target starts (with an optional delay in days); "follows" — the source starts after the target finishes; "duplicates"/"duplicated", "copied_to"/"copied_from" mirror each other the same way; "relates" is a plain, non-directional link. Redmine stores one record per link and derives the inverse, so an issue is listed as the source of some of its relations and the target of others — never assume issue_id equals the id you queried; compare both ids to work out which way the dependency points. The id of a relation is what redmine_delete_issue_relation takes.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | No | Issue whose relations should be listed. Returns every relation the issue takes part in, in either direction. Provide exactly one of issue_id or issue_relation_id. | |
| issue_relation_id | No | Numeric id of a single relation (the relation's own id, not an issue id) to read back. Provide exactly one of issue_id or issue_relation_id. |