I was try to retrive geo target data and matrics in campaing level with this query
query1 = """SELECT
geo_target_constant.canonical_name,
geo_target_constant.country_code
FROM geo_target_constant """
query2 ="""
SELECT
campaign.id,
campaign.name,
campaign.status,
campaign_criterion.location.geo_target_constant
FROM campaign_criterion
WHERE campaign.status = 'ENABLED'
"""
query1 to get all name geo target and query2 to get geo target in camapign level, and than how to get geo traget with matrics like impression, cpc and others ? i was try use geographic_view but i don't know to join with query1 or query2, can you give me best practics for this case ?