allCommenters()

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


Bash
allCommenters() #Output: Text list


Examples

Parser expression

Description

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


Bash
allCommenters(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 and updaters 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
allCommenters(issueList) #Output: Text list


Examples

Parser expression

Description

Bash
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

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