I am trying to find the query to show linked issues in an epic. I have seen posts that say to use "linkedIssues" but this is not a field that we have. Is there another way to do this without a plugin on Jira data center?
Hello @Cailyn Steinhardt
Are you trying to find the issues that are children of the Epic, or issues that are linked to the Epic using generic issue linking functionality?
What version of Jira are you using?
The linkedIssues function has been available at least as far back as v7.4, as per this document:
linkedIssues is a function, not a field. To use it you need to use it this way:
issue in linkedIssues(issueKey, linkType)
you can try with this JQl
issuekey in childIssuesOf("<epicIssue>")
it 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.
Hi @Cailyn Steinhardt ~ if you just want to see the issues linked directly to an Epic, you can search using "Epic Link" = ABC-123. If you are looking to drill down further (i.e. sub-tasks linked to a Story in that Epic), you would need an add-on like ScriptRunner.
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.