MCPcopy
hub / github.com/mongodb/node-mongodb-native / isUpdateBatch

Function isUpdateBatch

src/bulk/common.ts:1238–1240  ·  view source on GitHub ↗
(batch: Batch)

Source from the content-addressed store, hash-verified

1236}
1237
1238function isUpdateBatch(batch: Batch): batch is Batch<UpdateStatement> {
1239 return batch.batchType === BatchType.UPDATE;
1240}
1241
1242function isDeleteBatch(batch: Batch): batch is Batch<DeleteStatement> {
1243 return batch.batchType === BatchType.DELETE;

Callers 2

mergeBatchResultsFunction · 0.85
executeCommandsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected