The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

How to JQL search for all linked issues to a project from another project

Lee Ng
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!
June 17, 2024

Hi, I'm currently stumped on what JQL I need to search or whether it's even possible.

I'm trying to run a search that will pick up all the issues from project1 that has linked issues from another project in project2 and are not closed.

I have tried the following and it seems to have randomly picked up a few issues and but all of them. I have tested with an issue by linking it up via parent/child but it is not picking it up.

Tested query

project = project1 and issuefunction in linkedIssuesOf('project = project2') and status not in (done)

Assistance is much appreciated for you gurus :) - Thanks in advance!

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Tuncay Senturk _Snapbytes_
Community Champion
June 17, 2024

Hi @Lee Ng 

Welcome to the Community!

Sorry if I could not get it right. As far as I understood, you want to list all issues of PR1 which have linked issues from other projects. For this case, I'd try

project = PR1 and issueFunction in linkedIssuesOf("project != PR1")