This function returns a text list with all comment authors or updaters of the current issue by update date in ascending order.

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

This example returns all issue commenters and updaters, e.g.:

"admin.istrator, bob.smith"

Output

This function returns a TEXT LIST


Variant where you can additionally define issue keys.

Syntax
allCommenters(issueKeys) #Output: Text list
Examples
Parser expressionDescription
allCommenters(%{parent.key})
This example returns a text list with the user names of comment authors and updaters 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
allCommenters(issueList) #Output: Text list
Examples
Parser expressionDescription
allCommenters(linkedIssues("is blocked by"))

This example returns a text list with all the commenters and comment updaters for linked issues blocking the current issue.

To achieve this, the following functions are used 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

If you are just looking for users who have created (and not updated) comments try allCommentCreators() instead. If you want each creator or updator just once in the list of users, just encapsulate the function with the distinct() expression parser function.


Use cases and examples