Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

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



JQL Functions

Parameters

ParameterMandatoryFormat
Group Name(tick)group name
Start Date (tick)'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(error)'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

commentedByGroupMemberBetweenDate(groupname,startdate,enddate)

Examples

Finds all issues commented by jira-developers between from "2015/11/01" to "2015/11/15"

issue in commentedByGroupMemberBetweenDate(jira-developers, "2015/11/01", "2015/11/15" )

 

Finds all issues not commented by jira-developers in 1 week

issue not in commentedByGroupMemberBetweenDate("jira-developers", -1w)

 

Finds all issues commented by jira-developers between from "2015/11/05 08:50to "2015/11/05 11:50"

issuekey in commentedByGroupMemberBetweenDate("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"

id in commentedByGroupMemberBetweenDate("jira-developers", "2015/11/05 08:50")


  • No labels