...
- subquery ( Mandatory), it can have any valid JQL clause.
- link type (Optional),
- link versus (Optional), it can have O (outward link type) and I (inward link type).
Examples
...
Searching issues blocked by linked issues in a state not equal to Done
Assuming you have the following Issue Linking settings
and the following Mapping
The issues that are blocked by issues in a state not equal to Done, you could usecan be searched by running the following search:
issue in hqlLinkedIssuesOf("status!=done", "BlockersBlocks", "O")
The JQL function will research all issues linking to any issue not having status equal to done and having link equal to blocks.