I am creating a custom filter in Project A to filter issues in the Backlog and the Board. I want to be able to filter issues in Project A which are linked to Project B issues (Project B contains potential issues on released versions). This helps to trace the development items in Project A linked to customer issues in Project B.
I tried below queries but it didnt execute:
JQL 1 - project = "Project A" AND issue IN linkedIssuesOf('project = "Project B"')
JQL 2 - project = "Project A" AND issueLink in linkedIssues("Project B")
to the best of my knowledge, this is trickier than one would think; your query would really require some kind of join or subquery, which isn't available in plain Jira/JQL.
A few ways forward:
If you want to run your search dynamically, without manually "stitching" two queries together, you'll need extra tooling:
Hope this helps,
Best,
Hannes
Just to expand on the last point, this is how this would look in the app that my team and I are working on, JXL for Jira. Put simply, you'd create a sheet with all issues that are potentially relevant to you, model an issue structure based on "relates to" issue links (that's just a couple of clicks), and then use JXL filtering capabilities to narrow down to the issues that you care about:
Once you have your list of issues, you can work on these directly in JXL (much like you'd do in e.g. Excel or Google Sheets), trigger various operations in Jira, or export them for further processing.
Any questions just let me know!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I’m Charlotte, a support engineer at Appfire and I’m here to help you.
Unfortunately, using vanilla JQL, you’ll not be able to do it dynamically.
In the app where my team works, JQL Search Extensions for Jira, you can use this query to find issues from project A that are linked to issues in project B:
issue in linkedIssuesOfQuery("project='Project B'") AND project="Project A"
Please contact our support if you have any other questions about this query.
We’ll be happy to help you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.