Hello Peter! Very thanks for reply!
I think my question is related more to Ads API because i use GAQL queries, and think this queries routed to the same engine that process queries from API (please, correct me if its wrong).
My customer want to analyze data which appeared in UI when selecting "Locations" (from left menu) -> and then "Matched locations (account)" (above table header)
Here is the screenshot with data which i want to get from query:
https://yadi.sk/i/vYwXdBYQC9pNLg(can't attach image here because message was deleted immediately after i try to post it)
geographic_view
location_view
user_location_view
Only "user_location_view" has "user_location_view.targeting_location" attribute. Which i expect to be responsible for showing targeted or matched locations.
I make 2 queries with different user_location_view.targeting_location condition:
This query, with user_location_view.targeting_location = TRUE produces 3 rows:
"SELECT user_location_view.country_criterion_id, user_location_view.resource_name, user_location_view.targeting_location, segments.geo_target_most_specific_location, customer.descriptive_name,
customer.id FROM user_location_view WHERE user_location_view.targeting_location = TRUE"
3 rows returned.
But this, with only difference that user_location_view.targeting_location = FALSE
"SELECT user_location_view.country_criterion_id, user_location_view.resource_name, user_location_view.targeting_location, segments.geo_target_most_specific_location, customer.descriptive_name,
customer.id FROM user_location_view WHERE user_location_view.targeting_location = FALSE"
returns nothing.
And here i am stuck... Don't know how to pull this data, which i expect to get from my second query.