list_nested_executions
Lists direct child executions of a parent execution, with recursive option to retrieve all descendant executions.
Instructions
List all child (nested) executions of an execution.
Args: execution_rid: RID of the parent execution. recurse: If True, return all descendants (children, grandchildren, etc.).
Returns: JSON array of {execution_rid, workflow_rid, status, description} for each child.
Example: list_nested_executions("1-PARENT") # Direct children only list_nested_executions("1-PARENT", recurse=True) # All descendants
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| recurse | No | ||
| execution_rid | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |