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

For anonymous comments an empty text ("") is returned.

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

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

"admin.istrator, bob.smith"

Output

This function returns a TEXT LIST


Variant where you additionally define issue keys.

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

This example returns a text list with all the commenters for linked issues blocking 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

If you additionally want users who have updated comments, have a look at allCommenters().


Use cases and examples