I am trying to figure out the jql syntax to find all epics that have resolved or closed issues.
Thanks
Tracy
Hi Tracy
You need a script runner plugin and try JQL like below
issuetype = epic and not (issueFunction in linkedIssuesOf("status != Closed", "has Epic"))
Hi Daniel,
when trying your JQL I get the following error.
"Could not find any issue link type having either inward or outward description: has Epic. Remove argument to search all link types. Available links are: [clones, is cloned by, created, created by, Depends on, Depending Issue, duplicates, is duplicated by, is Epic of, has Epic, Related to, Related from, tests, tested by]"
Any clue what went wrong?
Thanks Axel
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There is a difference between the status values Resolved and Closed. You can resolve an issue, but then it is not closed automatically. Perhaps the above query from Daniel does not match your assumption one hundred percent.
How about this?
issuetype = epic and not (issueFunction in linkedIssuesOf("status NOT IN (Resolved, Closed)", "has Epic"))
I currently have similar problems with my query and this one worked for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
You could do it with the Power Scripts add-on as well:
Your JQL query would look like this:
key in epicsOf(
"resolution is not empty"
)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.