Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Finds all issues which are commented by specified project role members for the project of issue between selected dates, after selected date or before date.

Table of Contents
minLevel3

Info
iconfalse
titleJQL Functions

Page Tree
rootJQL Functions

Parameters

ParameterMandatoryFormat
Project Role Name(tick)

Project Role Name

Warning

Role names are case sensitive.

Start 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'
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

Tip

commentedByRoleMemberBetweenDate(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"

Tip

issue in commentedByRoleMemberBetweenDate(Developers, "2015/11/01", "2015/11/15" )

 

Finds all issues not commented by Developers role members for the project of issue in 1 week

Tip

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

 

Finds all issues commented by Developers role members for the project of issue from "2015/11/05 08:50to "2015/11/05 11:50"

Tip

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

Tip

id in commentedByRoleMemberBetweenDate("Developers", "2015/11/05 08:50")