Last Commented By Group Member Between Dates
Parameters
Parameter | Mandatory | Format |
---|---|---|
Group Name | group name | |
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
lastCommentedByGroupMemberBetweenDate(groupname,startdate,enddate)
Examples
Finds all issues commented by jira-developers between from "2015/11/01" to "2015/11/15" lastly.
issue in lastCommentedByGroupMemberBetweenDate(jira-developers, "2015/11/01", "2015/11/15" )
Finds all issues not commented by jira-developers in 1 week lastly.
issue not in lastCommentedByGroupMemberBetweenDate("jira-developers", -1w)
Finds all issues commented by jira-developers between from "2015/11/05 08:50" to "2015/11/05 11:50" lastly.
issuekey in lastCommentedByGroupMemberBetweenDate("jira-developers", "2015/11/05 08:50","2015/11/05 11:50")
Finds all issues commented by jira-developers after "2015/11/05 08:50" lastly.
id in lastCommentedByGroupMemberBetweenDate("jira-developers", "2015/11/05 08:50")