You're enrolled in our new beta rewards program. Join our group to get the inside scoop and share your feedback.
Join groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi all,
I please need help in Jira to create a query/filter that searches all issues that are linked to any Epic that contains "ABCD" value in its name.
PS : I dont have any Plugging or AddOn in my Jira tool.
Thanks a lot !! :))
Unfortunately, I don't believe there is a way to do this in the baseline version of Jira Cloud.
I did a quick search on the Atlassian Marketplace, and did not see a free app that would help for your use-case. There are paid apps that will solve this for you.
The closest thing in JQL is the parentEpic() function, but it only operates on a fixed list of epics. Since baseline JQL doesn't support subqueries, it can't do what you want.
As a workaround, you can do it in two stages. First, find all the epics you want with the first search:
project = "XYZ" and type = Epic and Summary ~ "ABCD"
Then take that list of epics and put them into a second search:
parentEpic in (XYZ-12, XYZ-23, XYZ-34)
Admittedly this is more manual than you want. Hopefully your epics don't change much. You could set up some automation to look for Epics that get added (or edited?), so that you get notified when your second search needs to be updated.
You may also want to review the details of the "contains" operator (aka ~) in case the default fuzzy-matching is more generous than you want. There is syntax for more exact string searched in JQL. More in the docs here.
Hope that helps!
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.