Retrieves the descendant subgraph for a specific task, with the requested task as the root vertex. Traverses child relationships breadth-first down to the depth specified by level. Use this to identify all downstream tasks that will be triggered when this task completes.
Parameters
id: string
The unique identifier of the task.
query: {level?:number;withTask?:boolean}
an object with query parameters
Optionallevel?: number
Maximum descendant depth to traverse breadth-first.
Retrieves the descendant subgraph for a specific task, with the requested task as the root vertex. Traverses child relationships breadth-first down to the depth specified by
level. Use this to identify all downstream tasks that will be triggered when this task completes.