Current issue
This function returns a text list with all comment authors or updaters of the current issue by update date in ascending order.
allCommenters() #Output: Text list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns all issue commenters and updaters, e.g.: "admin.istrator, bob.smith" |
Output
This function returns a text list
Issue keys
Variant where you can additionally define issue keys.
allCommenters(issueKeys) #Output: Text list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
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 |
|---|---|---|
|
|
text |
A text containing issue keys as a comma-separated list. |
Output
This function returns a text list
Issue list
Variant where you can additionally define specific issues in an issue list.
allCommenters(issueList) #Output: Text list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
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 |
|---|---|---|
|
|
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
| Use case | JWT feature | Workflow function | Field type | Automated action | Parser functions |
|---|