Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • 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

Searching issues blocked by linked issues in a state not equal to Done

...

The JQL function  issue in hqlLinkedIssuesOf("status!=done", "Blocks", "O")The JQL function will  will research all issues linking to any issue blocked by one/more issue/s not having status equal to done and having link equal to blocks.

...

Searching issues in a state not equal to Done, blocking linked issues having priority High

issue The JQL function issue in hqlLinkedIssuesOf("priority= High", "Blocks", "I") and status != Done will research all issues not having status equal to Doneblocking issues having priority equal to High.