bbovenzi commented on code in PR #56022:
URL: https://github.com/apache/airflow/pull/56022#discussion_r2376233694
##########
airflow-core/src/airflow/api_fastapi/core_api/routes/public/dag_run.py:
##########
@@ -347,11 +352,15 @@ def get_dag_runs(
session: SessionDep,
dag_bag: DagBagDep,
run_id_pattern: Annotated[_SearchParam,
Depends(search_param_factory(DagRun.run_id, "run_id_pattern"))],
+ run_id_contains: Annotated[_SearchParam,
Depends(search_param_factory(DagRun.run_id, "run_id_contains"))],
triggering_user_name_pattern: Annotated[
_SearchParam,
Depends(search_param_factory(DagRun.triggering_user_name,
"triggering_user_name_pattern")),
],
dag_id_pattern: Annotated[_SearchParam,
Depends(search_param_factory(DagRun.dag_id, "dag_id_pattern"))],
+ conf_search: QueryDagRunConfSearchFilter,
+ consuming_asset: QueryDagRunConsumingAssetFilter,
+ producing_asset: QueryDagRunProducingAssetFilter,
Review Comment:
As I said in the other PR. I think this is best done separately because we
need to add these fields to the DagRunResponse too
--
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]