shreyaskj-0710 opened a new pull request, #54382:
URL: https://github.com/apache/airflow/pull/54382
Fixes #53741
**Description**
These changes are made to enable new query param 'is_scheduled' to /dags
api.
**Reason for the approach**
To determine if a DAG is scheduled, several data sources can be considered:
- serialized_dag table — _type attribute under the data column.
- dag_run table — absence of records may indicate no schedule.
- dag table — timetable_description column.
After evaluating these options, the dag.timetable_description column seems
to be more time efficient . This PR
implements the logic using that column.
**testing**
Verified the API using Postman by creating both scheduled and unscheduled
DAGs, then confirming that they were
correctly filtered by setting the is_scheduled parameter to true or false.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]