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
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
Thanks. I dind't know the linkedIssues function.
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.