Type alias UpdateManyResult<Schema>

UpdateManyResult<Schema>: InternalUpdateResult<Schema, number>

Represents the result of an updateMany operation.

Type Parameters

Example

const result = await collection.updateOne({
  _id: 'abc'
}, {
  $set: { name: 'John' }
}, {
  upsert: true
});

if (result.upsertedCount) {
  console.log(`Document with ID ${result.upsertedId} was upserted`);
}

Field

matchedCount - The number of documents that matched the filter.

Field

modifiedCount - The number of documents that were actually modified.

Field

upsertedCount - The number of documents that were upserted.

Field

upsertedId - The identifier of the upserted document if upsertedCount > 0.