mirror of https://gitee.com/bigwinds/arangodb
22 lines
404 B
Plaintext
22 lines
404 B
Plaintext
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/last <<EOF
|
|
{ "collection": "products" }
|
|
EOF
|
|
|
|
HTTP/1.1 200 OK
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"result" : {
|
|
"_id" : "products/858518411",
|
|
"_key" : "858518411",
|
|
"_rev" : "858518411",
|
|
"i" : 1,
|
|
"a" : {
|
|
"k" : 2,
|
|
"j" : 2
|
|
}
|
|
},
|
|
"error" : false,
|
|
"code" : 200
|
|
}
|