This function returns a text list in result of evaluating textExpression against each of the issues in argument issues.

The parameter textExpression is an expression that returns a text, where references to field values of issues in argument issues are done using the function origin before field code.

e.g., %{function.issue.summary} is field code for Summary in each of the issues in argument issues.


textOnIssueList(issueList, textExpression) #Output: Text list



Parser expressionDescription


textOnIssueList(subtasks(), %{function.issue.assignee} = %{function.issue.reporter} ? %{function.issue.key} : null)


This example returns the issue keys of sub-tasks with the same reporter and assignee.

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

A valid text expression.



This function returns a



Use cases and examples



Parser function cloud
Map(question)
Notes

Workaround

let list = issue.links.map(l=>l.linkedIssue);
list.map(i=>issue.summary + " - " + i.priority.name)







Status
Tech review

Style guide




Short description

Returns a text list in result of evaluating textExpression against each of the issues in argument issues.

Output

Available since

Label