Status
Tech review

Style guide




Short description

Returns the list of issues linked to the specified issue(s), including Epic-Task links.

Output

Available since




This function returns the list of issues linked to the specified issue(s), including Epic-Task links.


linkedIssues() #Output: Issue list



Parser expressionDescription


linkedIssues()


This example returns an issue list with all issue linked to the current issue.


distinct(linkedIssues() EXCEPT linkedIssues("has Epic, is Epic of"))


This example returns an issue list of all the issues linked to current issue, excluding Epic-Task issue links.



This function returns an .


An issue appears in the output as many times as is linked to the current issue. Function distinct() can be used to remove duplicated issues.




Variant where you additionally can define issue link types.


linkedIssues(linkTypes) #Output: Issue list



Parser expressionDescription


linkedIssues("blocks, clones")


This example returns an issue list of all the issues linked with the current issue using issue link types blocks or clones.



Parameters used in this function

ParameterInput (data type)Description
linkTypes

Comma-separated list of issue link type names, or an empty text ("") for representing all issue link types, i.e., linkedIssues("") is equivalent to linkedIssues() .



This function returns an




Variant where you additionally define issues.


linkedIssues(linkTypes, issues) #Output: Issue list



Parser expressionDescription


linkedIssues("", subtasks())


This example returns an issue list of all issues linked to the current issue's sub-tasks using any issue link type.


linkedIssues("clones, duplicates", subtasks())


This example returns an issue list of all issues linked to the current issue's sub-tasks using the link type "clones" or "duplicates".



Parameters used in this function

ParameterInput (data type)Description
linkTypes

Comma-separated list of issue link type names, or an empty text ("") for representing all issue link types, i.e., linkedIssues("") is equivalent to linkedIssues() .
issues

Any given issue list. Usually this value is retrieved from a function (e.g. linkedissues() or subtasks()).

Duplicated issues are discarded.



This function returns an




Variant where you define issue keys instead of issues.


linkedIssues(linkTypes, issueKeys) #Output: Issue list



Parser expressionDescription


linkedIssues("is blocked by", %{parent.key})


This example returns an issue list of all issues linked to the current issue's parent using any issue link type.



Parameters used in this function

ParameterInput (data type)Description
linkTypes

Comma-separated list of issue link type names, or an empty text ("") for representing all issue link types, i.e., linkedIssues("") is equivalent to linkedIssues() .
issueKeys

Comma-separated list of issue keys. Duplicated issue keys are discarded.



This function returns an