xxxxxxxxxx
db.<collection>.insertMany([{key:value,key:value ..}],[{key:value,key:value ..}])
xxxxxxxxxx
db.myCollectionName.insertMany([
{title: "Bad People", author: "Eleven"},
{title: "Should I stay or should I go", author: "Will Byers"},
{title: "My friend Mike", author: "Eleven"}
])
# returned:
{
acknowledged: true,
insertedIds: {
'0': ObjectId("62f4f4aee6e21a4378d31f7c"),
'1': ObjectId("62f4f4aee6e21a4378d31f7d"),
'2': ObjectId("62f4f4aee6e21a4378d31f7e")
}
}
xxxxxxxxxx
try {
db.products.insertMany( [
{ item: "card", qty: 15 },
{ item: "envelope", qty: 20 },
{ item: "stamps" , qty: 30 }
] );
} catch (e) {
print (e);
}