search related jiras

peter peter January 25, 2013

Is there a way to search for jiras that are related to a certain jira? Here are a few concrete use cases

* find all subtasks of a certain jira that have not been resolved

* find all jira that a certain jira requires that have not been resolved

1 answer

1 accepted

0 votes
Answer accepted
ConradR
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.
January 25, 2013

I think this gives you an idea:

All subtasks of TEST-1 which are not resolved/closed:

parent = TEST-1 AND NOT status in (Resolved, Closed)

All all open Issues that block TEST-1:

issue in linkedIssues("TEST-1", "is blocked by") AND NOT status in (Resolved, Closed)

https://confluence.atlassian.com/display/JIRA/Advanced+Searching#AdvancedSearching-linkedIssues

peter peter February 18, 2013

Thanks. I dind't know the linkedIssues function.

Suggest an answer

Log in or Sign up to answer