arangosh> db.example.insert([{ Hello : "World" }, {Hello: "there"}])
[
{
"_id" : "example/110424",
"_key" : "110424",
"_rev" : "_YOn1fSi--B"
},
{
"_id" : "example/110428",
"_key" : "110428",
"_rev" : "_YOn1fSi--D"
}
]
arangosh> db.example.insert([{ Hello : "World" }, {}], {waitForSync: true});
[
{
"_id" : "example/110432",
"_key" : "110432",
"_rev" : "_YOn1fSm--_"
},
{
"_id" : "example/110436",
"_key" : "110436",
"_rev" : "_YOn1fSm--B"
}
]