groupMatches()

Description:

Perform searches based on groups which their name match with the provided regular expression.

Note:
This function uses Java native String.matches() method internally to determine the groups affected by the given expression.
See Pattern Java Class fo further information.


SyntaxgroupMatches(regex)
Available sincev1.0.0-RELEASE
Supported fieldscustom fields of type Group
Supported operatorsIN , NOT IN
Unsupported operators

= , != , ~ , !~ , > , >= , < , <=

IS , IS NOT , WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED

Examples:

• Find issues whose 'QA Team' group picker custom field value starts with 'Backend':

"QA Team" IN groupMatches("Backend.*")

• Find issues whose 'Dev Team' group picker custom field value contains 'Java':

"Dev Team" IN groupMatches(".*Java.*")

• Find issues whose 'IT Team' group picker custom field value ends with 'Azure':

"IT Team" IN groupMatches(".*Azure")

JQL Function Reference