eq
Matches documents where the value of a field equals the value.
Example
class User(
val name: String?,
val age: Int,
)
collection.find {
User::name eq "foo"
}
Content copied to clipboard
Matches documents where the value of a field equals the value.
class User(
val name: String?,
val age: Int,
)
collection.find {
User::name eq "foo"
}