MongoDB request DSL • opensavvy.ktmongo.dsl.query • FilterQuery • lteNotNull
lteNotNull¶
Selects documents for which this field has a value lesser or equal to value
.
If value
is null
, the operator is not added (all elements are matched).
Example¶
External resources¶
See also¶
FilterQuery.lte
FilterQuery.eqNotNull
Learn more about the 'notNull' variants
open infix fun <V> KProperty1<T, V>.lteNotNull(value: V?)
Selects documents for which this field has a value lesser or equal to value
.
If value
is null
, the operator is not added (all elements are matched).
Example¶
External resources¶
See also¶
FilterQuery.lte
FilterQuery.eqNotNull
Learn more about the 'notNull' variants