updateMany

abstract suspend fun updateMany(filter: Bson, update: Bson): UpdateResult

Update all documents in the collection according to the specified arguments.

Parameters

filter

a document describing the query filter, which may not be null.

update

a document describing the update, which may not be null. The update to apply must include only update operators. T

Throws

com.mongodb.MongoWriteException
com.mongodb.MongoWriteConcernException
com.mongodb.MongoException

abstract suspend fun updateMany(    filter: Bson,     update: Bson,     options: UpdateOptions): UpdateResult

Update all documents in the collection according to the specified arguments.

Parameters

filter

a document describing the query filter, which may not be null.

update

a document describing the update, which may not be null. The update to apply must include only update operators.

options

the options to apply to the update operation

Throws

com.mongodb.MongoWriteException
com.mongodb.MongoWriteConcernException
com.mongodb.MongoException

abstract suspend fun updateMany(    clientSession: ClientSession,     filter: Bson,     update: Bson): UpdateResult

Update all documents in the collection according to the specified arguments.

Since

3.6

Parameters

clientSession

the client session with which to associate this operation

filter

a document describing the query filter, which may not be null.

update

a document describing the update, which may not be null. The update to apply must include only update operators. T

Throws

com.mongodb.MongoWriteException
com.mongodb.MongoWriteConcernException
com.mongodb.MongoException

abstract suspend fun updateMany(    clientSession: ClientSession,     filter: Bson,     update: Bson,     options: UpdateOptions): UpdateResult

Update all documents in the collection according to the specified arguments.

Since

3.6

Parameters

clientSession

the client session with which to associate this operation

filter

a document describing the query filter, which may not be null.

update

a document describing the update, which may not be null. The update to apply must include only update operators.

options

the options to apply to the update operation

Throws

com.mongodb.MongoWriteException
com.mongodb.MongoWriteConcernException
com.mongodb.MongoException