mirror of https://gitee.com/bigwinds/arangodb
28 lines
587 B
Plaintext
28 lines
587 B
Plaintext
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/range <<EOF
|
|
{ "collection": "products", "attribute" : "i", "left" : 2, "right" : 4 }
|
|
EOF
|
|
|
|
HTTP/1.1 201 Created
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"result" : [
|
|
{
|
|
"_id" : "products/870249355",
|
|
"_key" : "870249355",
|
|
"_rev" : "870249355",
|
|
"i" : 2
|
|
},
|
|
{
|
|
"_id" : "products/870445963",
|
|
"_key" : "870445963",
|
|
"_rev" : "870445963",
|
|
"i" : 3
|
|
}
|
|
],
|
|
"hasMore" : false,
|
|
"count" : 2,
|
|
"error" : false,
|
|
"code" : 201
|
|
}
|