Specifically, I have have a workflow that allows me to set a status on an epic to "Groomed" and "Ready for Development" and many others.
I want to create a filter that always returns the issues associated with the epics that have a status of "Groomed" and "Ready for Development".
Hi,
With standard JQL you can only execute your subquery, export the results and manually construct another JQL using the export epic issue keys. It works if it's just a one off job.
Standard JQL doesn't easily allow it but the results can be quickly found using our professional indexing service JQL Search Extensions.
You can find children of epics with the following extended JQL:
issue in childrenOfEpicsInQuery("status in (Groomed, 'Ready for Development')")
Thanks,
Daniel
As a workaround we're using automation to add/remove a label to all issues in an epic when the epic changes status... Then I can search and setup boards using that label.
Not pretty but it works without extensions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Found a solution:
issueFunction in issuesinEpics("type = epic AND project = XXXX AND status in (Groomed, \"Ready for Development\")")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.