dag_graph
Retrieve the task dependency graph structure for a specific DAG in Apache Airflow. Simplifies DAG inspection by providing clear task and dependency details.
Instructions
[Tool Role]: Retrieves the task dependency graph structure for a specific DAG.
Args: dag_id: The DAG ID to get graph structure for
Returns: DAG graph with tasks and dependencies: dag_id, tasks, dependencies
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
}
},
"required": [
"dag_id"
],
"type": "object"
}