Status
Tech review

Style guide




Short description

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

Output




The function returns the 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"))


The function returns an of all the issues linked to current issue, excluding Epic-Task issue links.



Parameters used in this function

ParameterInput (data type)Description
<parameter>

Parameter description.



The function returns an




The function returns the of issues linked to current one using issue link types in argument 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(text issue_link_types) #Output: Issue list



Parser expressionDescription


linkedIssues("blocks, clones")


The function returns an 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
<parameter>

Parameter description.



The function returns an




The function returns the of issues linked to the ones in argument issues using issue link types in argument issue_link_types. Duplicated issues in argument issues are discarded.


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



Parser expressionDescription


linkedIssues("", subtasks())


The function returns an 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
<parameter>

Parameter description.



The function returns an




The function returns theĀ  list of issues linked to those ones whose keys are in argument issue_keys. 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})


The function returns an 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
<parameter>

Parameter description.



The function returns an