Hi there,

I was using GAQL in SearchGoogleAdsStreamRequest, selecting from 
`ad_group_ad_asset_view`.

One issue was that, when the SELECTed fields and the WHERE clause contained 
a `segments` field , some ad assets disappear from the response.

Here are the queries I tried.

Query without segment fields which result in 1 row in the response
```
        SELECT
                ad_group_ad.ad.id,
                asset.text_asset.text
           FROM ad_group_ad_asset_view
          WHERE ad_group_ad.ad.id = "????"
            AND asset.id = "????"
```

Query with `segments.ad_network_type` which result in no row in the response
```
        SELECT
                ad_group_ad.ad.id,
                asset.text_asset.text
                , segments.ad_network_type
           FROM ad_group_ad_asset_view
          WHERE ad_group_ad.ad.id = "????"
            AND asset.id = "????"
            AND segments.ad_network_type = "SEARCH"
```

It only applied to specific ad asset. Please let me know how to properly 
include sensitive values like the IDs of the ad, ad asset, and the customer 
account to reproduce the issue.

Also, I was using Python. If necessary, I can share the Python code with 
you.

Looking forward to your response.

Regards,
Zhe

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2b19470a-d3f1-46dd-a2d6-e07730fc4332n%40googlegroups.com.

Reply via email to