Skip to content

MongoDB request DSLopensavvy.ktmongo.dsl.queryFilterQueryisUndefined

isUndefined

open fun Field<T, *>.isUndefined()

Deprecated

Selects documents for which the field is undefined.

Example

class User(
    val name: String,
    val age: Int?,
)

collection.find {
    User::age.isUndefined()
}

External resources

See also

open fun KProperty1<T, *>.isUndefined()

Deprecated

Selects documents for which the field is undefined.

Example

class User(
    val name: String,
    val age: Int?,
)

collection.find {
    User::age.isUndefined()
}

External resources

See also