jvm MongoDB request DSL • opensavvy.ktmongo.dsl.query • FilterQueryPredicate • gte gte¶ abstract fun gte(value: T) Selects documents for which this field has a value greater or equal to value. Example¶ class User( val name: String, val age: Int?, ) collection.find { User::age { gte(18) } } External resources¶ Official documentation See also¶ FilterQuery.gte FilterQueryPredicate.gteNotNull