I would like to find all the issues in a project that link to a collection of projects using a specific link type.
ProjectA has "Has features" links to issues in other projects. I only care about specific projects.
How do I build the query to only show ProjectA tickets that link to Project C and G?
It feels like I am close with this, but it's not showing me the right set of tickets.
issueFunction in linkedIssuesOf("resolution = unresolved", "Has features") and project in (ProjA, ProjC, ProjG)
Hi,
Give it a try with this jql
project=A and issueFunction in linkedIssuesOf("project in (ProjC, ProjG) and resolution = unresolved", "Has features")
This worked! I did need to make a small tweak to it. The link type appears to use the link type on the ProjC and ProjG issues so I changed the "Has Features" to "Features in"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When I tried doing this, I got this error - Field 'issueFunction' does not exist or you do not have permission to view it.
How do I do resolve this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same. We are running Jira Cloud and I get the same error as a Jira Administrator.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.