This function returns a text list with all comments in the current issue by creation date in ascending order.

Syntax
allComments() #Output: Text list
Examples
Parser expressionDescription
allComments()

This example returns all issue comments, e.g.:

"This is the last comment.

This is another comment

And this is another comment"

Output

This function returns a TEXT LIST


Variant where you can additionally define issue keys.

Syntax
allComments(issueKeys) #Output: Text list
Examples
Parser expressionDescription
 allComments(%{parent.key}) 

This example returns all comments of the parent issue.

Additional information

Parameters used in this function

ParameterInput (data type)Description
issueKeys

TEXT

A text containing issue keys as a comma-separated list.
Output

This function returns a TEXT LIST


Variant where you can additionally define specific issues in an issue list.

Syntax
allComments(issueList) #Output: Text list
Examples
Parser expressionDescription
allComments(subtasks())

This example returns all the comments in all the sub-tasks of the current issue.

To achieve this, the following functions are used:

Additional information

Parameters used in this function

ParameterInput (data type)Description
issueList

ISSUE LIST

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

This function returns a TEXT LIST


Use cases and examples