Find all issues in epics that are open and resolved less than 60d ago

Tina Park
Contributor
March 8, 2022

Hello! I have this filter that is finding the epics that I need:

project = xxxx AND type = Epic AND (Resolved > -60d OR Status not in (done, Canceled, Cancelled))

How do I find the issues within these epics now? 

I took a look at https://community.atlassian.com/t5/Jira-Software-questions/Is-it-possible-to-nest-a-filter-inside-another-JQL-query-with/qaq-p/1505604, but it when I reference my filter with the id in JQL, it correctly references the filter name but says it is causing a cyclical reference. I'm not sure how it's looping back to it. 

 

 

1 answer

1 accepted

1 vote
Answer accepted
Trudy Claspill
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 8, 2022

You didn't show us your final filter so we can't say exactly why you are getting that error.

To get the issues that belong to the Epics the first filter retrieves you need a second filter.

The second filter would use the results of the first filter. Something like this:

"Epic Link" in (filter=<your filter>)

I don't recall if Jira Server supports that sort of filter re-use natively or if it requires a third party app to extend the filtering capabilities. I think it actually does not support this natively.

See this post:

https://community.atlassian.com/t5/Jira-questions/How-to-filter-for-issues-in-multiple-Epics/qaq-p/1343112

Tina Park
Contributor
March 10, 2022

nice! the linked post did the trick. thanks so much!

Tina Park
Contributor
March 10, 2022

hmm interesting, i never got notified for this answer but i got notified i accepted the answer. :( i haven't changed any notification settings.. weird

Suggest an answer

Log in or Sign up to answer