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

Function isInsertBatch

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

Source from the content-addressed store, hash-verified

1232}
1233
1234function isInsertBatch(batch: Batch): boolean {
1235 return batch.batchType === BatchType.INSERT;
1236}
1237
1238function isUpdateBatch(batch: Batch): batch is Batch<UpdateStatement> {
1239 return batch.batchType === BatchType.UPDATE;

Callers 2

mergeBatchResultsFunction · 0.85
executeCommandsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected