pierrejeambrun commented on code in PR #44332: URL: https://github.com/apache/airflow/pull/44332#discussion_r1871162514
########## airflow/api_fastapi/common/parameters.py: ########## @@ -572,3 +636,7 @@ def _transform_ti_states(states: list[str] | None) -> list[TaskInstanceState | N QueryAssetDagIdPatternSearch = Annotated[ _DagIdAssetReferenceFilter, Depends(_DagIdAssetReferenceFilter().depends) ] + +# UI Shared +QueryIncludeUpstream = Annotated[Union[bool, None], Depends(lambda: False)] +QueryIncludeDownstream = Annotated[Union[bool, None], Depends(lambda: False)] Review Comment: This makes me realize that we need a test case with for the `grid_data` with `include_upstream=True` `include_downstream=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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org