This function returns a number list of the dates (or timestamps) of related comments.


allCommentDates() #Output: Number list



Parser expressionDescription


allCommentDates()


This example returns all dates (timestamps) comments were added to the current issue, e.g.:

1605712204125, 1605712204845


first(allCommentDates())


This example returns the timestamp of the most recent comment, e.g:

1605712204854

To achieve this, the following functions are used:



This function returns a




Variant where you can additionally define issue keys.


allCommentDates(issueKeys) #Output: Number list



Parser expressionDescription


allCommentDates("SW-1,SW-2")


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



Parameters used in this function

ParameterInput (data type)Description
issueKeys

A text containing issue keys as a comma-separated list.



This function returns a




Variant where you can additionally define specific issues in an issue list.


allCommentDates(issueList) #Output: Number list



Parser expressionDescription


allCommentDates(issuesFromJQL("project = CRM"))


This example returns a number list with all the comment dates for all issues in the project CRM.



Parameters used in this function

ParameterInput (data type)Description
issueList

Any given issue list. Usually this value is retrieved from a function (e.g. linkedIssues() or subtasks()).



This function returns a





Status
Tech review

Style guide




Parser function cloud
Map(question)
Notes

Workaround


issue.comments.map(c=>c.created)




Use cases and examples



Short description

Returns the dates of specified comments

Output

Available since

Label