1 | From the JIRA header, click Issues -> Search for Issues | Search for Issues tab |
2 | Click Advanced to switch the form to advance search mode using JQL. | Search screen |
3 | Enter the JQL function | Search screen |
4 | Click the search icon to run the search. The list of issues appears. | JIRA search screen list view |
hqlLinkedIssues
hqlLinkedIssuesOf
The hqlLinkedIssuesOf(subquery, [link type], [link versus]) JQL function searches for all issues linked at least to one issue satisfying the filter and, when specified, having the specific link type and link direction.
The search is performed on issues linked via a local partnership only.
The admissible parameters are:
- subquery ( Mandatory), it can be any valid JQL clause.
- link type (Optional),
- link versus (Optional), it can assumes O (outward link type) and I (inward link type).
Examples
To find all the issues that are blocked by issues in a state not equal to Done, you could use:
issue in hqlLinkedIssuesOf("status!=done", "Blocks", "O")