allCommentDates()

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


Bash
allCommentDates() #Output: Number list


Examples

Parser expression

Description

Bash
allCommentDates()

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

1605712204125, 1605712204845

Bash
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.


Bash
allCommentDates(issueKeys) #Output: Number list


Examples

Parser expression

Description

Bash
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

Parameter

Input (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.


Bash
allCommentDates(issueList) #Output: Number list


Examples

Parser expression

Description

Bash
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

Parameter

Input (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