How do I filter epics with all stories done?

Alesh Dulal June 13, 2019

I would appreciate a normal JQL to filter these epics. Manual seems to be costly for me. Please suggest if any.

1 answer

1 vote
mfabris
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 14, 2019

IF you have scriptrunner you can use

 

IssueFunction in epicsOf('issuetype=story AND Resolution IS EMPTY')

 

This will return all epics that have unclosed stories.

Then save it as a filter and do another JQL expression for finding all the issues that are NOT in that filter

filter != 12345 

(12345 would be the number of the filter you saved) 

 

Without Scriptrunner it might be possible but then may be somebody more skilled can help ^_^

 

Good luck and happy weekend

Suggest an answer

Log in or Sign up to answer