You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
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
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.
Hi @Maxim Alter ,
Please, try issuesInEpics() instead:
issueFunction in issuesInEpics("key in (FOO-1, FOO-2, FOO-3)")
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.