I am looking to add filters to my GA UA api request.
Using equals works as expected 'ga:keyword==(not provided),ga:keyword==(not set)'
this will return the expected result
Not equals does not work 'ga:keyword!=(not provided),ga:keyword!=(not set)'
and this returns everything.
Ruby version 2.6.8
google-apis-analytics_v3 0.7.0
I have tried encoding the values (not provided)
and (not set)
, as well as just encoding spaces, I have also tried using the OR
operator ;
, it just never seems to work with !=
, am I missing something?
I have checked the UA Query Explorer and and have had no luck in replicating the generated response there via my rails app.