I have a number of Epics that belong to different projects/delivery teams and to a number of Initiatives.
I want to create filter that returns all the Epics that are children of those initiatives. Again, as they belong to different projects I lose the ability to use that in the filter. Also, I need it dynamic. I want to avoid using a static list in (initiative_2, initiative_2,...). Also, I want to avoid using labels, as those can be changed easily and issue creators may forget to label new issues.
My idea is to have:
Filter_1 = ListOfInitiatives
Filter_2 = issueType = Epic AND parentLink in ([Filter_1])
Search: filter = Filter_2
I have seen some threads that mention a couple of add-ons to accomplish what I need. Is there a way to do it with the core product, no add-ons?
Should we just get an admin to add a custom field and make it mandatory?
Hi @Joel Blazquez ,
It's not possible to get the results you're looking for with standard JQL. For one off-jobs you can get away with Excel export.
In your case, however, you really should consider installing an app. This way everything will be automatically handled by the indexing service. While you are researching solutions, you may consider our cloud indexing service:
After installing the app you'll be able to search for children of your initiatives:
issue in childrenOfIssuesInQueryRecursive("project in ('ACME', 'DEV') and type=Initiative")
You can find out more in the docs.
I hope it's useful!
Daniel
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.