Hi all,
I need a JQL query to find bugs open linked to issue in current sprint or in past sprints.
Details:
I have sprints with different story inside. When a story are tested, if bugs are present, the relative bug it's linked to the story.
How can I find this bugs with a JQL query?
This bugs aren't inside the sprint, so I can't use "In Sprint" JQL function for this issues.
Thanks in advice
Pier Nicolò
Hello @Pier Nicolò Pinna
You would need a plugin for this kind of query. If you have script runner plugin then it can be easily achieved using the followign query
type = bug and issueFunction in linkedIssuesOf("Sprint in openSprints()")
It fetches bugs which are linked to issues in open sprints (you can add futher conditions like closedSprints etc in the above JQL)
Hi @Tarun Sapra,
thanks for the answer. Do youknow if there is a way to have a similar result without plugin?
Cheers!
N
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Pier Nicolò Pinna
It's possible out of the box.
Jira provides a function to search for linkedIssue but you can do that only for a single issue key and not a generic search like the one which I shared above
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is not what I am looking for :(
Ok so I need a plugin or i need to think a workaround to find this issues
Many thanks for your support!
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.
Hello @Pier Nicolò Pinna
yes you need a plugin for the jql query which I posted above. If you wish to find bugs in closed sprint then if you know sprint name then you can find that using jql and without any external plugins.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I buy the plugin that you mention above, what should be exactly the JQL for this?
Many thanks
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.