Current issue
This function returns a number list of the dates (or timestamps) of related comments.
allCommentDates() #Output: Number list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns all dates (timestamps) comments were added to the current issue, e.g.: 1605712204125, 1605712204845 |
|
Bash
|
This example returns the timestamp of the most recent comment, e.g: 1605712204854 To achieve this, the following functions are used: |
Output
This function returns a number list
Issue keys
Variant where you can additionally define issue keys.
allCommentDates(issueKeys) #Output: Number list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns a number list with the timestamps of the comment dates for issues with the key SW-1 and SW-2, e.g: 1605712204125, 1605712204845 |
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 number list
Issue list
Variant where you can additionally define specific issues in an issue list.
allCommentDates(issueList) #Output: Number list
Examples
|
Parser expression |
Description |
|---|---|
|
Bash
|
This example returns a number list with all the comment dates for all issues in the project CRM. |
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 number list
📚 Use cases and examples
| Use case | Field type | Parser functions |
|---|---|---|
| Last comment, its author, and timestamp |