Supported list types

Number list

This function removes all duplicates from a number list.

distinct(numberList) #Output: Number list
Parser expressionDescription
%{distinct([1, 2, 1, 3, 4, 4, 5])}

This example returns

1, 2, 3, 4, 5

%{distinct(append(toNumberList(%{issue.versions.id}),toNumberList(%{issue.fixVersions.id})))}

This example returns a distinct number list of both affected and fix version/s id/s of the current issue, e.g.

10002,10000,10001

To achieve this, the following functions are used:

Parameters used in this function

ParameterInput (data type)Description
numberList

Any given number list.

This function returns a .

If the list is empty, the function returns an empty .


Text list

This function removes all duplicates from a text list.

distinct(textList) #Output: Text list
Parser expressionDescription
%{distinct(["blue", "green", "yellow", "blue", "yellow"])}

This example returns

blue, green, yellow

%{distinct(append(toStringList(%{issue.versions}),toStringList(%{issue.fixVersions})))}

This example returns a distinct string list of both affected and fix version/s of the current issue, e.g.

1.1,1.0,2.0

To achieve this, the following functions are used:

Parameters used in this function

ParameterInput (data type)Description
textList

Any given text list.

The function returns a .

If the list is empty, the function returns an empty .


Issue list

This function removes all duplicates from an issue list.

distinct(issueList) #Output: Issue list
Parser expressionDescription
%{distinct(linkedIssues())}

This example returns an issue list of linked issues, with only one occurrence per issue, although an issue may be linked with more than one issue link type.

To achieve this, the following functions are used:

Parameters used in this function

ParameterInput (data type)Description
issueList

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

This function returns an .

If the list is empty, the function returns an empty .


Status
Tech review

Style guide

Short description

Removes all duplicates from a number, text, or issue list.

Output

Available since

Label