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