mirror of https://gitee.com/bigwinds/arangodb
46 lines
962 B
Plaintext
46 lines
962 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" : [
|
|
{
|
|
"Hello2" : "World2",
|
|
"_id" : "products/836105099",
|
|
"_rev" : "836105099",
|
|
"_key" : "836105099"
|
|
},
|
|
{
|
|
"Hello5" : "World5",
|
|
"_id" : "products/837088139",
|
|
"_rev" : "837088139",
|
|
"_key" : "837088139"
|
|
},
|
|
{
|
|
"Hello1" : "World1",
|
|
"_id" : "products/835777419",
|
|
"_rev" : "835777419",
|
|
"_key" : "835777419"
|
|
}
|
|
],
|
|
"hasMore" : true,
|
|
"id" : "837284747",
|
|
"count" : 5,
|
|
"extra" : {
|
|
"stats" : {
|
|
"writesExecuted" : 0,
|
|
"writesIgnored" : 0,
|
|
"scannedFull" : 5,
|
|
"scannedIndex" : 0,
|
|
"filtered" : 0
|
|
},
|
|
"warnings" : [ ]
|
|
},
|
|
"cached" : false,
|
|
"error" : false,
|
|
"code" : 201
|
|
}
|