MongoDB driver for Kotlin (synchronous) • opensavvy.ktmongo.sync.operations • FindOperations
FindOperations¶
interface FindOperations<Document : Any> : BaseOperations
Interface grouping MongoDB operations allowing to search for information.
Inheritors¶
Properties¶
context
¶
abstract val context:
Functions¶
find
¶
abstract fun find(): MongoIterable<Document>
Finds all documents in this collection.
Finds all documents in this collection that satisfy filter
.
findOne
¶
Finds a document in this collection that satisfies filter
.