Hi all,
Wondering if this is possible: I want to query the status of issues in one project but perform that query in another, so that I don't have to click on each ticket to find out the status of the linked ticket. The JQL might look something like:
linkedIssue.status = Done
That, obviously, doesn't work. Does anyone know if & how this can be done?
Cheers!
I don't think Jira can do this natively. But you could use a plugin to Jira, such as scriptrunner, in order to get some extended JQL functions like this.
Take a look at https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_linkedissuesof
With this plugin you could use a JQL syntax such as
issueFunction in linkedIssuesOf("status=Done")
This would return the issues that are linked to other issues with that specific status.
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.