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!
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")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.