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"}
Official documentation