groupMatches()
- Jack Nolddor (Unlicensed)
- Jack Nolddor
Owned by Jack Nolddor (Unlicensed)
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.
Syntax | groupMatches(regex) |
Available since | v1.0.0-RELEASE |
Supported fields | custom fields of type Group |
Supported operators |
|
Unsupported operators |
|
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