I can find Linked issues to a single Jira with this:
issue IN linkedIssues("SECLENDING-7")
I want to find all issues linked isssues in the Epic:
"Epic Link" = SECLENDING-76
Hello @William
Welcome to the Atlassian community.
Jira does not provide that capability natively. It would require a third party app such as ScriptRunner or JQL Search Extensions, that extend the JQL capabilities.
Do you already have an app like that, or is your company open to acquiring such an app?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you have ScriptRunner you should be able to use the linkedIssuesOf() function that they provide.
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.
You need to use different syntax, as shown in the document link I provided; i.e.
issueFunction in linkedIssuesOf("subquery", "link name")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Understood @Trudy Claspill Thanks. I've looked at the document and the examples and think I've it working!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome!
If my response has helped you solve your problem, please consider clicking on the Accept Answer button above my responses to mark your Question as Solved.
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.