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

Compare with Current View Page History

« Previous Version 5 Next »

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.

Syntax
linkedIssues() #Output: Issue list
Examples
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.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST


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() .

Syntax
linkedIssues(string issue_link_types) #Output: Issue list
Examples
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.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST


Variant where you additionally define issues.

Duplicated issues in argument issues are discarded.

Syntax
linkedIssues(string issue_link_types, issue list issues) #Output: Issue list
Examples
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.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST


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.

Syntax
linkedIssues(string issue_link_types, string issue_keys) #Output: Issue list
Examples
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.

Additional information

Parameters used in this function

ParameterInput (data type)Description
xxx

DATA TYPE

Parameter description.
Output

This function returns an ISSUE LIST