gt
Selects documents for which this field has a value strictly greater than value.
Example
class User(
val name: String,
val age: Int?,
)
collection.find {
User::age gt 18
}
Content copied to clipboard
Selects documents for which this field has a value strictly greater than value.
class User(
val name: String,
val age: Int?,
)
collection.find {
User::age gt 18
}