Versions Compared

Key

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


UI Text Box
sizemedium
typeinfo

This function returns the list of issues linked to the specified issue(s).


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 containing all issues linked to the current issue, e.g:

IT-3412, IT-2412



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 it is linked to the current issue.




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.

To achieve this, the following functions are used:


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

Duplicated issues are ignored.



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. Optionally you can use Field codes returning issue keys.



UI Expand
titleOutput

This function returns an

Status
subtletrue
titleissue list


Use cases and examples

Page properties report
firstcolumnUse case
headingsJWT feature, Workflow function, Parser functions, Label
cqllabel = "parser_func_linkedissues" and space = currentSpace()


Page properties
hiddentrue


Short description

Returns a list of issues linked.

Output

Status
subtletrue
titleissue list