SamWheating opened a new pull request #18924: URL: https://github.com/apache/airflow/pull/18924
<!-- Thank you for contributing! Please make sure that your code changes are covered with tests. And in case of new features or big changes remember to adjust the documentation. Feel free to ping committers for the review! In case of existing issue, reference it using one of the following: closes: #ISSUE related: #ISSUE How to write a good git commit message: http://chris.beams.io/posts/git-commit/ --> One of the issues we run into when developing tools on top of the Airflow API is wanting to get just a subset of DAGs (typically all of the jobs relating to a particular service or data source). Rather than pulling the entire list of DAGs and then filtering client-side, it would be great if we could push filter within the query and only return the subset of DAGs. The ability to filter by tags is close to providing the required functionality, but it relies on users properly and consistently tagging their DAGs, which isn't always the case. I tried to keep the interface as similar as possible to the `search` field on the Airflow homepage by calling the field `search` and padding it with wildcards. -- 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]
