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 |
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 admissible parameters are:
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")