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

1 vote
Tuncay Senturk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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")

 

Suggest an answer

Log in or Sign up to answer