We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdee208 commit b114e8cCopy full SHA for b114e8c
firestore/app/src/main/java/com/google/example/firestore/kotlin/DocSnippets.kt
@@ -1144,15 +1144,15 @@ abstract class DocSnippets(val db: FirebaseFirestore) {
1144
1145
fun orQuery() {
1146
val collection = db.collection("cities")
1147
- // [START or_query]
+ // [START or_queries]
1148
val query = collection.where(Filter.and(
1149
Filter.equalTo("state", "CA"),
1150
Filter.or(
1151
Filter.equalTo("capital", true),
1152
Filter.greaterThanOrEqualTo("population", 1000000)
1153
)
1154
))
1155
- // [END or_query]
+ // [END or_queries]
1156
}
1157
1158
fun orQueryDisjunctions() {
0 commit comments