Skip to content

Commit 8695e53

Browse files
authored
Fix GAQL synax in get_ad_group_bid_modifiers example
Fixes #456
1 parent 71ea41d commit 8695e53

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/GetAdGroupBidModifiers.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,11 @@ private void runExample(
115115
+ " ad_group_bid_modifier.hotel_check_in_day.day_of_week,"
116116
+ " ad_group_bid_modifier.preferred_content.type "
117117
+ "FROM"
118-
+ " ad_group_bid_modifier"
119-
+ "LIMIT 10000";
118+
+ " ad_group_bid_modifier";
120119
if (adGroupId != null) {
121120
searchQuery += String.format(" WHERE ad_group.id = %d", adGroupId);
122121
}
122+
searchQuery += " LIMIT 10000";
123123

124124
// Creates a request that will retrieve ad group bid modifiers using pages of the specified
125125
// page size.

0 commit comments

Comments
 (0)