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
Variant where you can additionally define issue keys.
Bash
allCommenters(issueKeys) #Output: Text list
Variant where you can additionally define specific issues in an issue list.
Bash
allCommenters(issueList) #Output: 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
| Use case |
|---|
| No content found. |