Commented By Current User Between Dates
Parameters
Parameter | Mandatory | Format |
---|---|---|
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
commentedByCurrentUserBetweenDate(startdate,enddate)
Examples
Finds all issues commented by current user from "2015/11/01" to "2015/11/15"
issue in commentedByCurrentUserBetweenDate( "2015/11/01", "2015/11/15" )
Finds all issues not commented by current user in 1 week
issue not in commentedByCurrentUserBetweenDate(-1w)
Finds all issues commented by current user from "2015/11/05 08:50" to "2015/11/05 11:50"
issuekey in commentedByCurrentUserBetweenDate("2015/11/05 08:50","2015/11/05 11:50")
Finds all issues commented by current user after "2015/11/05 08:50"
id in commentedByCurrentUserBetweenDate("2015/11/05 08:50")