mirror of https://gitee.com/bigwinds/arangodb
13 lines
298 B
Plaintext
13 lines
298 B
Plaintext
arangosh> a1 = db.example.insert({ a : 1 });
|
|
{
|
|
"_id" : "example/488688883",
|
|
"_rev" : "488688883",
|
|
"_key" : "488688883"
|
|
}
|
|
arangosh> db._remove(a1);
|
|
true
|
|
arangosh> db._remove(a1);
|
|
[ArangoError 1202: document /_api/document/example/488688883 not found]
|
|
arangosh> db._remove(a1, true);
|
|
false
|