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

Compare with Current View Page History

« Previous Version 3 Next »

This JQL function can be used to search for issues that are linked to issues that satisfy the JQL subquery.

Syntax
linkedIssuesOf(subquery, link_types) #Output: Issues
Examples
Parser expressionDescription
issue in linkedIssuesOf("issuetype = Task and priority < 3 and created < startOfWeek()", "is blocked by, causes")
This example returns all issues that are linked to a Task which has priority below 3 and has been created this week, and their link type is either is blocked by or causes.
issue in linkedIssuesOf("project = \"Example Project\" and assignee = j.carrey", "relates to")
This example returns all the issues that are linked to an issue that belongs to the Example Project's project and whose assignee is j.carrey, and their link type is relates to.
Additional information

Parameters used in this function

ParameterInput (data type)Description
subquery

TEXT

A JQL query to select the issues that are linked to the returned issues. This would improve the function's performance.

link_types

TEXT

The link type or link types that the returned issues should have.
Output

This function returns TEXT.