-
Notifications
You must be signed in to change notification settings - Fork 407
Add OR snippets #430
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Add OR snippets #430
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1335,4 +1335,92 @@ public void onComplete(@NonNull Task<AggregateQuerySnapshot> task) { | |
}); | ||
// [END count_aggregate_query] | ||
} | ||
|
||
public void orQuery() { | ||
CollectionReference collection = db.collection("cities"); | ||
// [START or_queries] | ||
Query query = collection.where(Filter.and( | ||
Filter.greaterThan("name", "L"), | ||
Filter.or( | ||
Filter.equalTo("capital", true), | ||
Filter.greaterThanOrEqualTo("population", 1000000) | ||
) | ||
)); | ||
// [END or_queries] | ||
} | ||
|
||
public void orQueryDisjunctions() { | ||
CollectionReference collection = db.collection("cities"); | ||
|
||
// [START one_disjunction] | ||
collection.whereEqualTo("a", 1); | ||
// [END one_disjunction] | ||
|
||
// [START two_disjunctions] | ||
collection.where(Filter.or( | ||
Filter.equalTo("a", 1), | ||
Filter.equalTo("b", 2) | ||
)); | ||
// [END two_disjunctions] | ||
|
||
// [START four_disjunctions] | ||
collection.where(Filter.or( | ||
Filter.and( | ||
Filter.equalTo("a", 1), | ||
Filter.equalTo("c", 3) | ||
), | ||
Filter.and( | ||
Filter.equalTo("a", 1), | ||
Filter.equalTo("d", 4) | ||
), | ||
Filter.and( | ||
Filter.equalTo("b", 2), | ||
Filter.equalTo("c", 3) | ||
), | ||
Filter.and( | ||
Filter.equalTo("b", 2), | ||
Filter.equalTo("d", 4) | ||
) | ||
)); | ||
// [END four_disjunctions] | ||
|
||
// [START four_disjunctions_compact] | ||
collection.where(Filter.and( | ||
Filter.or( | ||
Filter.equalTo("a", 1), | ||
Filter.equalTo("b", 2) | ||
), | ||
Filter.or( | ||
Filter.equalTo("c", 3), | ||
Filter.equalTo("d", 4) | ||
) | ||
)); | ||
// [END four_disjunctions_compact] | ||
|
||
// [START 20_disjunctions] | ||
collection.where(Filter.or( | ||
Filter.inArray("a", Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)), | ||
Filter.inArray("b", Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)), | ||
)); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unfortunately there's currently a bug in the backend which prevents this query from being served -- Even though it is a valid query (it's valid to have one There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can add this to the snippet registry and then exclude it from devsite for now. |
||
// [END 20_disjunctions] | ||
|
||
// [START 10_disjunctions] | ||
collection.where(Filter.and( | ||
Filter.inArray("a", Arrays.asList(1, 2, 3, 4, 5)), | ||
Filter.or( | ||
Filter.equalTo("b", 2), | ||
Filter.equalTo("c", 3) | ||
) | ||
)); | ||
// [END 10_disjunctions] | ||
} | ||
|
||
public void illegalDisjunctions() { | ||
// [START 50_disjunctions] | ||
collection.where(Filter.and( | ||
Filter.inArray("a", Arrays.asList(1, 2, 3, 4, 5)), | ||
Filter.inArray("b", Arrays.asList(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)), | ||
)); | ||
// [END 50_disjunctions] | ||
} | ||
} |
Uh oh!
There was an error while loading. Please reload this page.