Hi I am using Python 3.7 and Google Ads API Beta v2.
In building a query, I attempted to use the operator CONTAINS ALL with the WHERE clause for
campaign.name. I received this error: "CONTAINS ALL is not a valid operator to use with '
campaign.name' in WHERE clause. Valid operators: =, !=, LIKE, NOT LIKE, IN, NOT IN, IS NULL, IS NOT NULL, REGEXP_MATCH, NOT REGEXP_MATCH."
The LIKE operator does not take a list and I will be using a list. It seems REGEXP_MATCH may be helpful but I can't find documentation on how to use REGEXP_MATCH. Can someone give me an example so that I can see the proper syntax?