bbovenzi commented on code in PR #68682:
URL: https://github.com/apache/airflow/pull/68682#discussion_r3624365707
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/dag_run.py:
##########
@@ -547,6 +549,20 @@ def get_dag_runs(
partition_key_pattern: QueryDagRunPartitionKeySearch,
partition_key_prefix_pattern: QueryDagRunPartitionKeyPrefixSearch,
consuming_asset_pattern: QueryConsumingAssetPatternSearch,
+ partition_date_start: datetime.date | None = Query(
Review Comment:
```suggestion
partition_date_gte: datetime.date | None = Query(
```
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/dag_run.py:
##########
@@ -547,6 +549,20 @@ def get_dag_runs(
partition_key_pattern: QueryDagRunPartitionKeySearch,
partition_key_prefix_pattern: QueryDagRunPartitionKeyPrefixSearch,
consuming_asset_pattern: QueryConsumingAssetPatternSearch,
+ partition_date_start: datetime.date | None = Query(
+ None,
+ description=(
+ "Inclusive lower bound of the partition_date window, interpreted
as a local calendar "
+ "day in the Dag's timetable timezone."
+ ),
+ ),
+ partition_date_end: datetime.date | None = Query(
Review Comment:
```suggestion
partition_date_lte: datetime.date | None = Query(
```
--
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]