getBlockerChain
getBlockerChainTrace blocks/blocked_by relations recursively in both directions to return full upstream and downstream blocking dependency chains for an issue.
Instructions
Trace only blocks/blocked_by relations recursively in both directions, returning the full upstream and downstream blocking dependency chains. Use getIssueTree for parent/subtask hierarchy and other direct relation types.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issueId | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| root | No | The issue the chain is centred on. | |
| blocks | No | Issues that depend on the root (recursively), each annotated with its depth from the root. | |
| blockedBy | No | Issues that block the root (recursively), each annotated with its depth from the root. | |
| chainDepth | Yes | End-to-end depth of the chain (upstream + 1 + downstream). | |
| totalIssues | Yes | Total number of distinct issues in the chain (including the root). |