where

fun Query.where(field: String, equalTo: Any?): Query(source)

Deprecated

Deprecated in favor of using a [FilterBuilder]

Replace with

import dev.gitlive.firebase.firestore
where { field equalTo equalTo }

fun Query.where(path: FieldPath, equalTo: Any?): Query(source)

Deprecated

Deprecated in favor of using a [FilterBuilder]

Replace with

import dev.gitlive.firebase.firestore
where { path equalTo equalTo }

fun Query.where(field: String, lessThan: Any? = null, greaterThan: Any? = null, arrayContains: Any? = null): Query(source)
fun Query.where(path: FieldPath, lessThan: Any? = null, greaterThan: Any? = null, arrayContains: Any? = null): Query(source)
fun Query.where(field: String, inArray: List<Any>? = null, arrayContainsAny: List<Any>? = null): Query(source)
fun Query.where(path: FieldPath, inArray: List<Any>? = null, arrayContainsAny: List<Any>? = null): Query(source)

Deprecated

Deprecated in favor of using a [FilterBuilder]

Replace with

import dev.gitlive.firebase.firestore
where {  }