Bulk.toJSON()
Nesta página
Bulk.toJSON()
Retorna um documento JSON que contém o número de operações e lotes no objeto
Bulk()
.
Exemplo
O seguinte inicializa um Bulk()
construtor de operações na items
collection, adiciona uma série de operações de gravação e chama Bulk.toJSON()
no bulk
objeto de construtor .
var bulk = db.items.initializeOrderedBulkOp(); bulk.insert( { item: "abc123", status: "A", defaultQty: 500, points: 5 } ); bulk.insert( { item: "ijk123", status: "A", defaultQty: 100, points: 10 } ); bulk.find( { status: "D" } ).deleteOne(); bulk.toJSON();
O Bulk.toJSON()
retorna o seguinte documento JSON
{ acknowledged: true, insertedCount: 2, insertedIds: [ { index: 0, _id: ObjectId("627bf77e5e19ff3518448887") }, { index: 1, _id: ObjectId("627bf77e5e19ff3518448888") } ], matchedCount: 0, modifiedCount: 0, deletedCount: 0, upsertedCount: 0, upsertedIds: [] }