You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Google Ads API documentation says that the limit for filtering using GAQL query system it's 20 000 items in the IN clause and should return error FILTER_HAS_TOO_MANY_VALUES if the limit is exceeded. As you can see here.
In my case, I'm using a NOT_IN clause with more than 20 000 items in filter and no error is returned. It looks like instead of returning FILTER_HAS_TOO_MANY_VALUES it take the first 20k items of the filter and ignore the rest because I'm missing data. Actually, when I do the filter "manually" (with a loop in my code) I have all the results.
Google Ads API documentation says that the limit for filtering using GAQL query system it's 20 000 items in the IN clause and should return error FILTER_HAS_TOO_MANY_VALUES if the limit is exceeded. As you can see here.
In my case, I'm using a NOT_IN clause with more than 20 000 items in filter and no error is returned. It looks like instead of returning FILTER_HAS_TOO_MANY_VALUES it take the first 20k items of the filter and ignore the rest because I'm missing data. Actually, when I do the filter "manually" (with a loop in my code) I have all the results.
Here is the demonstration :
`var searchTerms = service.GetSearchTerms(request).ToList();
The text was updated successfully, but these errors were encountered: