get_tasks
Fetch and organize tasks associated with a specific DAG in Apache Airflow, enabling streamlined task retrieval and management using defined parameters.
Instructions
Get tasks for DAG
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dag_id | Yes | ||
order_by | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id": {
"title": "Dag Id",
"type": "string"
},
"order_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order By"
}
},
"required": [
"dag_id"
],
"title": "get_tasksArguments",
"type": "object"
}