I have been searching the various wildcard search questions and can't find one that addresses my specific issue. We have multiple Jira projects running in our org. One of the Jira projects is a Feedback Collector of sorts. When feedback is submitted from within our production app, it creates a ticket in the "Feedback" project. QA manages this project and when an issues is accepted as a valid bug, it is "moved" from Feedback to the correct project for the associated dev team, lets call this project "Accelerate" for simplicity in my example.
I need to query for all issues where project = Accelerate AND linked issues are from the Feedback project.
This is what I am trying and I cannot figure out how to get the "FEED" issues to wildcard so that I can find all relevant items.
project in (ACCE) AND issue in linkedIssues(FEED-*)
Any ideas???
I don't believe there is any way to do what you're asking in native Jira.
Options:
The issueFunction in linkedIssuesOf referenced by Ben is in the Scriptrunner plugin.
project in (ACCE) AND issueFunction in linkedIssuesOf("project in (FEED)")
Try this. linkedIssuesOf takes a query as a parameter, so it returns all issues linked to the FEED project. Let me know if that worked!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmmm, that gives me a JQL error:
"Field 'issueFunction' does not exist or you do not have permission to view it."
My Jira Admin is on PTO, so perhaps I will try again next week when he is back and I can verify permissions.
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.