Issue Link result grouping

Satya Brata Debta July 12, 2017

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 

2 answers

0 votes
Alex Christensen
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 12, 2017

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.

 

Satya Brata Debta May 28, 2019

Thanks 

0 votes
Christoph Schötz
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 12, 2017

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

Suggest an answer

Log in or Sign up to answer