-
Suggestion
-
Resolution: Unresolved
-
0
-
9
-
Issue Summary
Unable to use JQL advanced search to filter issues that are linked to other issues but only show results where the linked issues are not in closed or resolved status.
Steps to Reproduce
- Performing a JQL using issueLinkType = "is blocked by", for example, returns all issues that are or were blocked by issues even if the blockers are resolved or done.
Expected Results
Having a function or a modifier that filters the results further so that only links to "active" issues are considered.
Actual Results
There's no way to perform this filter in a single query at the time.
Workaround
Retrieving all "active" issues (not resolved or closed) manually and using them to form a query like the following example:
project = "EOB" AND issue in linkedIssues(EOB-1,"blocks") OR issue in linkedIssues(EOB-3,"blocks") OR issue in linkedIssues(EOB-4,"blocks")
This works but becomes impractical as the number of "active" issues increases
- is related to
-
JRACLOUD-22024 Ability to search for blocked / blocking issues
- Gathering Interest