Hi There,
We have requirements to get the list of issue type (Story) which are blocked /dependent on Stories
Example :
List of stories which is blocked by stories
List of Stories which is dependent on Defects
List of Defect which blocks the Stories
In addition to Christoph's suggestion, ScriptRunner should be able to do this, too.
Cloud: https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner/cloud/overview
Server: https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner/server/overview
The add-on uses scripted JQL functions using subqueries. Basically, you can get what you're looking for using a query similar to this:
issueFunction in linkedIssuesOf("issuetype = Story", "blocks")
The linkedIssuesOf() function takes a subquery and then the link description as parameters (with the link description being optional).
Using this method, you would need three separate filters/queries, but this could work for you, I think.
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Satya,
please check out the add-on JQL tricks which can do things like this: https://marketplace.atlassian.com/plugins/com.j-tricks.jql-plugin - as far as I know this is not really possible in standard JIRA.
Cheers
Christoph
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.