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


allComments() #Output: Text list



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"



This function returns a




Variant where you can additionally define issue keys.


allComments(issueKeys) #Output: Text list



Parser expressionDescription


 allComments(%{parent.key}) 


This example returns all comments of the parent issue.



Parameters used in this function

ParameterInput (data type)Description
issueKeys

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



This function returns a




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


allComments(issueList) #Output: Text list



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:



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 a



Use cases and examples




Status
Tech review

Style guide




Parser function cloud
Map(question)
Notes

Workaround

issue.comments.map(c=>c.body.plainText)






Short description

Returns defined comments

Output

Available since

Label