Status
Tech review

Style guide




Short description

Returns the list of issues linked to current issue, including Epic-Task links.

Output

Available since




This function returns the issue list of issues linked to the current issue, including Epic-Task links.

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


linkedIssues() #Output: Issue list



Parser expressionDescription


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.



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.



This function returns an




Variant where you additionally define issue_link_types.

Argument issue_link_types is a 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() .


linkedIssues(string issue_link_types) #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
xxx

Parameter description.



This function returns an




Variant where you additionally define issues.

Duplicated issues in argument issues are discarded.


linkedIssues(string issue_link_types, issue list issues) #Output: Issue list



Parser expressionDescription


linkedIssues("", subtasks())


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



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.



This function returns an




Variant where you define issue_keys instead of issues.

Argument issue_keys is a comma-separated list of issue keys. Duplicated issue keys in argument issue_keys are discarded.


linkedIssues(string issue_link_types, string issue_keys) #Output: Issue list



Parser expressionDescription


linkedIssues("is blocked by", %{00041})


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



Parameters used in this function

ParameterInput (data type)Description
xxx

Parameter description.



This function returns an