Get Downstream Nodes
get_downstream_nodesTrace all downstream dependents from a node, returning each with its depth level for impact analysis.
Instructions
Walk the full downstream dependency graph for a node and return every dependent with its depth level.
Args: workspaceID: Workspace to query nodeID: Starting node whose downstream dependents to trace
Returns: Array of dependent nodes with nodeID, nodeName, nodeType, and depth (1 = direct child). Traverses the entire graph with no depth limit. Nodes are deduplicated.
Requires a lineage cache — will fetch all workspace nodes with detail=true on first call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeID | Yes | Node ID to trace downstream from | |
| workspaceID | Yes | Workspace ID |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| nodeID | No | ||
| nodeName | No | ||
| nodeType | No | ||
| ancestors | No | ||
| dependents | No | ||
| totalAncestors | No | ||
| totalDependents | No |