I want to build a search query for Google domain users using users.list Google Directory API. I tried to build a query according docs, which will select all users with givenName or familyName starts e.g. on letter "m".
I wrote the query:
givenName:m* or familyName:m*
, but it doesn't work.
Only givenName:m* familyName:m*
works but it inserts "and" operator between clauses.
In docs stays:
Multiple clauses are separated by whitespace and are implicitly joined by an "and" operator.
Can I only write a query with the implicit "and" operator? Is there any way how to write it using "or"?