Forums

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

JQL to find the issues in one project not linked to another project.

neelam annad
Contributor
May 30, 2022

Need a JQL to find the issues in one project not linked to another project.

For example - I have Epics in one project and Capabilities in other project, want to know the Epics which are not linked to Capabilities using "is related to"

 

2 answers

1 accepted

1 vote
Answer accepted
Andrea Pannitti
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 30, 2022

Hi @neelam annad ,

if you have ScriptRunner, you could use a JQL like the following:

project = First_Project and type = Epic and not issueFunction in linkedIssuesOf("project = Second_Project and type = Capabilities", "is related to")

Where First_Project is the project with Epic issuetype and Second_Project is the project with Capabilities issuetype.

0 votes
S Fong
Contributor
October 24, 2023

What happens if I don't have ScriptRunner?

Suggest an answer

Log in or Sign up to answer