Bulk.toJSON()Bulk()객체의 작업 및 배치 수가 포함된 JSON document를 반환합니다.
호환성
이 명령은 다음 환경에서 호스팅되는 배포에서 사용할 수 있습니다.
- MongoDB Atlas: 클라우드에서의 MongoDB 배포를 위한 완전 관리형 서비스
참고
이 명령은 모든 MongoDB Atlas 클러스터에서 지원됩니다. 모든 명령에 대한 Atlas 지원에 관해 자세히 알아보려면 지원되지 않는 명령을 참조하세요.
예시
The following initializes a Bulk() operations builder on the items collection, adds a series of write operations, and calls Bulk.toJSON() on the bulk builder object.
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();
The Bulk.toJSON() returns the following JSON document
{ acknowledged: true, insertedCount: 2, insertedIds: [ { index: 0, _id: ObjectId("627bf77e5e19ff3518448887") }, { index: 1, _id: ObjectId("627bf77e5e19ff3518448888") } ], matchedCount: 0, modifiedCount: 0, deletedCount: 0, upsertedCount: 0, upsertedIds: [] }