shreyaskj-0710 commented on code in PR #54382: URL: https://github.com/apache/airflow/pull/54382#discussion_r2275568683
########## airflow-core/src/airflow/api_fastapi/common/parameters.py: ########## @@ -540,6 +540,22 @@ def is_active(self) -> bool: self.value.lower_bound is not None or self.value.upper_bound is not None ) +class _IsDagScheduledFilter(BaseParam[bool]): + """Filter on timetable_description.""" + + def to_orm(self, select: Select) -> Select: + if not self.value is None and self.skip_none: + if not self.value: + return select.where(DagModel.timetable_description.ilike("%Never%")) + else: + return select.where(DagModel.timetable_description.not_like("%Never%")) Review Comment: Yes, I have tested this case in Postman, and it’s working fine. -- 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