The name of the JQL function is linkedIssuesInJQL.
It takes from one to three parameters:
No. | Type | Name | Description | Required |
---|---|---|---|---|
1 | string | JQL query | Query returning all linked issues | yes |
2 | string | Issue Link type | Name of the linking. All Issue Link types can be found in JIRA Administration page described in: https://confluence.atlassian.com/adminjiraserver073/configuring-issue-linking-861253998.html | optional |
3 | string | Direction | Direction of the linking. Can be "inward" or "outward". | optional |
Examples of usage:
issue in linkedIssuesInJQL("issuekey = PROJ-1")
issue in linkedIssuesInJQL("issuekey = PROJ-1", "Blocks")
issue in linkedIssuesInJQL("issuekey = PROJ-1", "Blocks", "outward")