Versions Compared

Key

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


Page properties
hiddentrue



Status
Tech review

Status
colourYellow
titletodoReady for review

Style guide

Status
colourYellow
titletodoReady 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 current 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 issue returns the list of issues linked to the current specified issue(s), 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.


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.



This function returns an

UI Expand
titleAdditional informationOutput

Parameters used in this function

ParameterInput (data type)Description
xxx

Status
subtletrue
title

data type

issue list

Parameter description

.


issue list

ui-expandtext-box
titletypeOutputtip

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.This function returns an

Status
subtletrue
title




UI Text Box
sizemedium
typeinfo

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() can define issue link types.


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues(string issue_link_typeslinkTypes) #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
xxxlinkTypes

Status
subtletrue
titledata typetext

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



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list




UI Text Box
sizemedium
typeinfo

Variant where you additionally define issues.Duplicated issues in argument issues are discarded.


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues(string issue_link_types, issue listlinkTypes, issues) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


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


This function 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
xxxlinkTypes

Status
subtletrue
titledata typetext

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. linkedissues() or subtasks()).

Duplicated issues are discarded

Parameter description

.



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.Argument issue_keys is a comma-separated list of issue keys. Duplicated issue keys in argument issue_keys are discarded.


Code Block
languagebash
titleSyntax
linenumberstrue
linkedIssues(string issue_link_typeslinkTypes, string issue_keysissueKeys) #Output: Issue list


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
linkedIssues("is blocked by", %{00041parent.key})


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



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
xxxlinkTypes

Status
subtletrue
titledata typetext

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

Parameter description

.



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list