🚀 New App Release! Permission Manager for Confluence Cloud is now available on the Atlassian Marketplace. Filter, audit, and bulk-manage page restrictions across your Confluence spaces - all built on Forge. Get started today: Permission Explorer & Manager for Confluence - Atlassian Marketplace

Last Commented By User Between Dates

Finds all issues which are lastly commented by specified user between selected dates,before selected date or after selected date.



JQL Functions

Parameters

Parameter

Mandatory

Format

User

check mark

username

Start Date 

cross mark

'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

cross mark

'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

lastCommentedByUserBetweenDate(user,startdate,enddate)

Examples

Finds all issues commented by jirauser from "2015/11/01" to "2015/11/15" lastly.

issue in lastCommentedByUserBetweenDate("jirauser", "2015/11/01", "2015/11/15" )

 

Finds all issues not commented by jirauser in 1 week lastly.

issue not in lastCommentedByUserBetweenDate("jirauser", -1w)

 

Finds all issues commented by jirauser from "2015/11/05 08:50to "2015/11/05 11:50lastly.

issuekey in lastCommentedByUserBetweenDate("jirauser", "2015/11/05 08:50","2015/11/05 11:50")

 

Finds all issues commented by jirauser after "2015/11/05 08:50" lastly.

id in lastCommentedByUserBetweenDate("jirauser", "2015/11/05 08:50")