Selects documents for which this field has a value greater or equal to value.
class User( val name: String, val age: Int?,)collection.find { User::age gte 18}
Official documentation