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