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/1007642050",
|
|
"_rev" : "1007642050",
|
|
"_key" : "1007642050"
|
|
}
|
|
arangosh> db.example.insert({ Hello : "World" }, true);
|
|
{
|
|
"error" : false,
|
|
"_id" : "example/1007838658",
|
|
"_rev" : "1007838658",
|
|
"_key" : "1007838658"
|
|
}
|