Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »

The add-on provides a set of useful JQL functions to filter on the tickets:
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 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")

  • No labels