arangosh> db.example.insert([{ Hello : "World" }, {Hello: "there"}])
[
{
"_id" : "example/18078",
"_key" : "18078",
"_rev" : "_XGh_UgS--_"
},
{
"_id" : "example/18082",
"_key" : "18082",
"_rev" : "_XGh_UgW---"
}
]
arangosh> db.example.insert([{ Hello : "World" }, {}], {waitForSync: true});
[
{
"_id" : "example/18086",
"_key" : "18086",
"_rev" : "_XGh_Uga--_"
},
{
"_id" : "example/18090",
"_key" : "18090",
"_rev" : "_XGh_Uga--B"
}
]