getIssueTree
getIssueTreeExplore the structural context of an issue: trace its parent chain to the root, list subtasks down to a chosen depth, and view direct relations.
Instructions
Explore structural context around one known issue: its parent chain to the root, subtasks down to the requested depth and direct relations. Use getBlockerChain for recursively traced blockers, or getIssue when only the single issue's full details are needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| depth | No | How deep to traverse children | |
| issueId | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| root | No | The issue the tree is centred around. Inspect its `related` field for cross-issue relations. | |
| subtree | No | The root issue plus its descendant subtree, expanded up to the requested depth. | |
| ancestors | No | Parent chain in order parent → grandparent → ... up to the root-most ancestor. | |
| fetchedCount | Yes | Total issues fetched while building the tree (visibility into rate-limited traversal). | |
| limitReached | Yes | True when traversal stopped at the safety limit and additional branches/depths exist. |