Hi all,
in Jira Cloud I'd like to perform a query to list all issues that are linked an Epic from a list of epics that have a filed with a particular value (Account = "some value").
My final expression should be something like this:
parentEpic in (<epics that have Account = "some value">)
Is there a way to do so?
Thanks
Hello Paolo,
There's no way to do it natively with JIRA Cloud, however, you can use the add-on Scriptrunner which provide you the issuefunction parameter, so you can configure a Script like the one below to return the issues you need:
issueFunction in linkedIssuesOf(“issuetype = Epic and status = Open")
Also, Atlassian has a feature request opened to implement this kind of functionality on JQL:
- https://jira.atlassian.com/browse/JRASERVER-25640
Please, feel free to vote and watch it for new updates.
Reference question: https://community.atlassian.com/t5/Questions/JQL-check-if-issue-s-epic-meets-condition/qaq-p/308812
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.