fetch_dags
Retrieve all DAGs from an Apache Airflow deployment with filtering options for tags, status, and ID patterns to manage workflow orchestration.
Instructions
Fetch all DAGs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dag_id_pattern | No | ||
| limit | No | ||
| offset | No | ||
| only_active | No | ||
| order_by | No | ||
| paused | No | ||
| tags | No |
Input Schema (JSON Schema)
{
"properties": {
"dag_id_pattern": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Dag Id Pattern"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
},
"only_active": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Only Active"
},
"order_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Order By"
},
"paused": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Paused"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"type": "object"
}