isNotUndefined
Deprecated
Selects documents for which the field is not undefined.
Example
class User(
val name: String,
val age: Int?,
)
collection.find {
User::age { isNotUndefined() }
}Content copied to clipboard
External resources
See also
Shorthand.
Opposite.