Last Commented By Role Member Between Dates
Finds all issues which are lastly commented by specified project role members for the project of issue between selected dates, after selected date or before date.
- 1 Parameters
- 2 Syntax
- 3 Examples
JQL Functions
Parameters
Parameter | Mandatory | Format |
|---|---|---|
Project Role Name | Project Role Name Role names are case sensitive. | |
Start Date | 'yyyy/MM/dd HH:mm', 'yyyy-MM-dd HH:mm', 'yyyy/MM/dd', 'yyyy-MM-dd', or a period format e.g. '-5d', '4w 2d' | |
End Date | 'yyyy/MM/dd HH:mm', 'yyyy-MM-dd HH:mm', 'yyyy/MM/dd', 'yyyy-MM-dd', or a period format e.g. '-5d', '4w 2d' |
Syntax
lastCommentedByRoleMemberBetweenDate(rolename,startdate,enddate)
Examples
Finds all issues commented by Developers role members for the project of issue from "2015/11/01" to "2015/11/15" lastly.
issue in lastCommentedByRoleMemberBetweenDate("Developers", "2015/11/01", "2015/11/15" )
Finds all issues not commented by Developers role members for the project of issue in 1 week lastly.
issue not in lastCommentedByRoleMemberBetweenDate("Developers", -1w)
Finds all issues commented by Developers role members for the project of issue from "2015/11/05 08:50" to "2015/11/05 11:50" lastly.
issuekey in lastCommentedByRoleMemberBetweenDate("Developers", "2015/11/05 08:50","2015/11/05 11:50")
Finds all issues commented by Developers role members for the project of issue after "2015/11/05 08:50" lastly.
id in lastCommentedByRoleMemberBetweenDate("Developers", "2015/11/05 08:50")