Skip to content

Commit

Permalink
chore: update region tag for query_filter_compound_multi_ineq.php (#2038
Browse files Browse the repository at this point in the history
)
  • Loading branch information
bshaffer authored Jul 26, 2024
1 parent eeda8ff commit bcd993b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firestore/src/query_filter_compound_multi_ineq.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ function query_filter_compound_multi_ineq(string $projectId): void
$db = new FirestoreClient([
'projectId' => $projectId,
]);
$collection = $db->collection('samples/php/cities');

# [START firestore_query_filter_compound_multi_ineq]
$collection = $db->collection('samples/php/cities');
$chainedQuery = $collection
->where('population', '>', 1000000)
->where('density', '<', 10000);
Expand Down

0 comments on commit bcd993b

Please sign in to comment.