mirror of https://gitee.com/bigwinds/arangodb
15 lines
324 B
Plaintext
15 lines
324 B
Plaintext
arangosh> db.example.insert({ Hello : "World" });
|
|
{
|
|
"error" : false,
|
|
"_id" : "example/1007691939",
|
|
"_rev" : "1007691939",
|
|
"_key" : "1007691939"
|
|
}
|
|
arangosh> db.example.insert({ Hello : "World" }, true);
|
|
{
|
|
"error" : false,
|
|
"_id" : "example/1007888547",
|
|
"_rev" : "1007888547",
|
|
"_key" : "1007888547"
|
|
}
|