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

Syntax
allCommentDates() #Output: Number list
Examples
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:

Output

This function returns a NUMBER LIST


Variant where you can additionally define issue keys.

Syntax
allCommentDates(issueKeys) #Output: Number list
Examples
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

Additional information

Parameters used in this function

ParameterInput (data type)Description
issueKeys

TEXT

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

This function returns a NUMBER LIST


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

Syntax
allCommentDates(issueList) #Output: Number list
Examples
Parser expressionDescription
allCommentDates(issuesFromJQL("project = CRM"))

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

ParameterInput (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 NUMBER LIST


Use cases and examples