Hi,
What are the keywords supported in Search Query?
For example, am using the SearchGoogleAdsRequest API to retrieve recommendations,
SearchGoogleAdsRequest request =
SearchGoogleAdsRequest.newBuilder()
.setCustomerId(Long.toString(clientCustomerId))
.setPageSize(PAGE_SIZE)
.setQuery(query)
.build();
Here, I am setting the query as
SELECT recommendation.resource_name FROM recommendation WHERE recommendation.type = 'TEXT_AD' LIMIT 100
Can I form this query similar to SQL queries? Where can I find help to form different queries with keywords like 'IN', 'LIKE', etc.,
Suresh