Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions source/reference/method/db.collection.insertMany.txt
Original file line number Diff line number Diff line change
Expand Up @@ -203,18 +203,18 @@ Since ``_id: 13`` already exists, the following exception is thrown:
BulkWriteError({
"writeErrors" : [
{
"index" : 0,
"index" : 1,
"code" : 11000,
"errmsg" : "E11000 duplicate key error collection: restaurant.test index: _id_ dup key: { : 13.0 }",
"errmsg" : "E11000 duplicate key error collection: inventory.products.$_id_ dup key: { : 13.0 }",
"op" : {
"_id" : 13,
"item" : "envelopes",
"qty" : 60
"item" : "stamps",
"qty" : 110
}
}
],
"writeConcernErrors" : [ ],
"nInserted" : 0,
"nInserted" : 1,
"nUpserted" : 0,
"nMatched" : 0,
"nModified" : 0,
Expand Down