Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How do I query for all issues that have a link of type "in scope of" another issue like ABC-3 ?

Isabel Snoeckx
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 7, 2022

We have multiple Jira projects (on-prem) and I want to show with a query all issues that are linked to issue ABC-3 (whatever the link type, it can be "is blocked by", "is in scope of" etc). If not possible, then just the ones that have the link type "is in scope of" - thanks !

 

1 answer

1 accepted

0 votes
Answer accepted
Walter Buggenhout
Community Champion
March 7, 2022

Hi @Isabel Snoeckx and welcome to the Community!

Searching for linked issues is not very well supported in out of the box Jira. On server, if you have Scriptrunner installed, that is possible with the following JQL filter:

issuefunction in LinkedIssuesOf("key = ABC-3")

The first part is a function enabled by the Scriptrunner app. The part between brackets is a subquery that could be virtually anything. Specifying link types is possible too, with an additional parameter.

Hope this helps! 

Isabel Snoeckx
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 8, 2022

Thanks - I'll give it a try 

Suggest an answer

Log in or Sign up to answer