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