I would like to find all epics that have "Issues in Epic" from a specific Project.
Current JQL:
project = FOO AND issuetype = Epic AND key in (FOO-1, FOO-2, FOO-3)
I can add and issueFunction in linkedIssuesOf("project = BAR and issueFunction in hasLinkType('Epic-Story Link')")
, but it gives me epics which have other types of linked issues (eg. clones, related ..)
Also attempted:
project = FOO AND issuetype = Epic AND key in (FOO-1, FOO-2, FOO-3) AND issueFunction in linkedIssuesOf("project = BAR AND 'Epic Link' is not EMPTY")
However, I always end up with issues that have multiple types of `Issue Links` (parent task, related to, tested by), and `Issues in Epic` from project BAZ (not BAR as I want).
Help pls.
Thanks
Hi @Maxim Alter ,
Please, try issuesInEpics() instead:
issueFunction in issuesInEpics("key in (FOO-1, FOO-2, FOO-3)")
Hope it helps.
Hi @Maxim Alter
Try using this :
Issuefunction in linkedIssuesOf("has Epic")
If you want to exclude close issue resolve issues, then use this
Issuefunction in linkedIssuesOf("status != Resolved", "has Epic")
Hope this helps.
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.