LDAP Group Filter

Can I make the Group filter look for 2 wildcard prefixes?

I want the following filter to work but didn’t have much luck…

(objectClass=group)((cn=team*)|(cn=role_openfire*))

try something like this

(objectClass=group)(|(cn=team*)(cn=role_openfire*))

Spot on, thanks!