mirror of https://gitee.com/bigwinds/arangodb
46 lines
972 B
Plaintext
46 lines
972 B
Plaintext
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/all <<EOF
|
|
{ "collection": "products", "batchSize" : 3 }
|
|
EOF
|
|
|
|
HTTP/1.1 201 Created
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"result" : [
|
|
{
|
|
"Hello1" : "World1",
|
|
"_id" : "products/2218218908",
|
|
"_rev" : "2218218908",
|
|
"_key" : "2218218908"
|
|
},
|
|
{
|
|
"Hello5" : "World5",
|
|
"_id" : "products/2219529628",
|
|
"_rev" : "2219529628",
|
|
"_key" : "2219529628"
|
|
},
|
|
{
|
|
"Hello2" : "World2",
|
|
"_id" : "products/2218546588",
|
|
"_rev" : "2218546588",
|
|
"_key" : "2218546588"
|
|
}
|
|
],
|
|
"hasMore" : true,
|
|
"id" : "2219726236",
|
|
"count" : 5,
|
|
"extra" : {
|
|
"stats" : {
|
|
"writesExecuted" : 0,
|
|
"writesIgnored" : 0,
|
|
"scannedFull" : 5,
|
|
"scannedIndex" : 0,
|
|
"filtered" : 0
|
|
},
|
|
"warnings" : [ ]
|
|
},
|
|
"cached" : false,
|
|
"error" : false,
|
|
"code" : 201
|
|
}
|