pierrejeambrun commented on code in PR #64387:
URL: https://github.com/apache/airflow/pull/64387#discussion_r3014975740
##########
newsfragments/64387.significant.rst:
##########
Review Comment:
Remove this file please. This is not a significant change. (Only breaking
changes/user warnings are)
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/gantt.py:
##########
@@ -59,8 +62,17 @@ def get_gantt_data(
dag_id: str,
run_id: str,
session: SessionDep,
+ start_date: Annotated[datetime | None, Query()] = None,
+ end_date: Annotated[datetime | None, Query()] = None,
Review Comment:
You can take a look at other `start_date_range` `end_date_range` filter.
Those will handle the boundaries. (lte, gte, gt, lt)
--
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]