allCommentCreators()

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.


Bash
allCommentCreators() #Output: Text list


Examples

Parser expression

Description

Bash
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.


Bash
allCommentCreators(issueKeys) #Output: Text list


Examples

Parser expression

Description

Bash
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

Parameter

Input (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.


Bash
allCommentCreators(issueList) #Output: Text list


Examples

Parser expression

Description

Bash
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

Parameter

Input (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