Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page properties
hiddentrue



Status
Tech review

Status
colourYellow
titleReady for review

Style guide

Status
colourYellow
titleReady for review

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged



Page properties
hiddentrue


Short description

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

Output

Status
subtletrue
titleissue list

Available since

Status
subtletrue
colourRed
titleneeds lookup




UI Text Box
sizemedium
typeinfo

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


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues() #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
linkedIssues()


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


Code Block
languagebash
linenumberstrue
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.



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list
.


UI Text Box
typetip

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.




UI Text Box
sizemedium
typeinfo

Variant where you additionally can define issue link types.


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues(linkTypes) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
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.



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
linkTypes

Status
subtletrue
titletext

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



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

Variant where you additionally define issues.


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues(linkTypes, issues) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
linkedIssues("", subtasks())


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


Code Block
languagebash
linenumberstrue
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".



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
linkTypes

Status
subtletrue
titletext

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

Status
subtletrue
titleissue list

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

Duplicated issues are discarded.



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

Variant where you define issue keys instead of issues.


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues(linkTypes, issueKeys) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
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.



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
linkTypes

Status
subtletrue
titletext

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

Status
subtletrue
titletext

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



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list