gyli commented on code in PR #54563:
URL: https://github.com/apache/airflow/pull/54563#discussion_r2323598761


##########
airflow-core/src/airflow/api_fastapi/common/parameters.py:
##########
@@ -616,6 +616,17 @@ def depends_float(
     FilterParam[bool | None],
     Depends(filter_param_factory(DagModel.is_paused, bool | None, 
filter_name="paused")),
 ]
+QueryHasImportErrorsFilter = Annotated[
+    FilterParam[bool | None],
+    Depends(
+        filter_param_factory(
+            DagModel.has_import_errors,
+            bool | None,
+            filter_name="has_import_errors",
+            description="Filter DAGs by having import errors. Only DAGs that 
have been successfully loaded before will be returned.",

Review Comment:
   And based on what I read, it seems like this discussion is still on going? 
Looks like most people don't like DAGs, but there's no conclusion yet between 
`Dags` and `dags`. 



-- 
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]

Reply via email to