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

Compare with Current View Page History

« Previous Version 4 Next »

The 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.

Syntax
linkedIssues() #Output: Issue list
Examples
Parser expressionDescription
distinct(linkedIssues() EXCEPT linkedIssues("has Epic, is Epic of"))

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

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST


The function returns the ISSUE LIST 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() .

Syntax
linkedIssues(text issue_link_types) #Output: Issue list
Examples
Parser expressionDescription
linkedIssues("blocks, clones")

The function returns an ISSUE LIST of all the issues linked with the current issue using issue link types blocks or clones.

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST


The function returns the ISSUE LIST 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.

Syntax
linkedIssues(text issue_link_types, issue list issues) #Output: Issue list
Examples
Parser expressionDescription
linkedIssues("", subtasks())

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

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST


The function returns the ISSUE LIST 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.

Syntax
linkedIssues(string issue_link_types, string issue_keys) #Output: Issue list
Examples
Parser expressionDescription
linkedIssues("is blocked by", %{00041})

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

Additional information

Parameters used in this function

ParameterInput (data type)Description
<parameter>

DATA TYPE

Parameter description.
Output

The function returns an ISSUE LIST