prabhusneha commented on code in PR #45062:
URL: https://github.com/apache/airflow/pull/45062#discussion_r1893909894
##########
airflow/api_fastapi/core_api/datamodels/backfills.py:
##########
@@ -56,3 +57,15 @@ class BackfillCollectionResponse(BaseModel):
backfills: list[BackfillResponse]
total_entries: int
+
+
+class BackfillRunInfo(BaseModel):
+ """Data model for run information during a backfill operation."""
+
+ logical_date: datetime
Review Comment:
Since the logical date is a datetime, so for example for DAGs with schedules
other than daily, the response will still include the dates on which the
backfill will be triggered. I imagine that the user likely has an understanding
of the dag's schedule when making a backfill request. Does including the data
interval provide additional value in this context?
<img width="472" alt="image"
src="https://github.com/user-attachments/assets/3d781536-48b7-499e-b01b-80733f6a5ff3"
/>
--
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]