1
0
Fork 0
arangodb/Documentation/Examples/RestSimpleWithinRectangle.g...

35 lines
766 B
Plaintext

shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/within-rectangle
{"collection":"products","latitude1":0,"longitude1":0,"latitude2":0.2,"longitude2":0.2,"skip":1,"limit":2}
HTTP/1.1 201 Created
content-type: application/json; charset=utf-8
{
"result" : [
{
"_id" : "products/1340106198",
"_key" : "1340106198",
"_rev" : "1340106198",
"name" : "Name/0.008/",
"loc" : [
0.008,
0
]
},
{
"_id" : "products/1339909590",
"_key" : "1339909590",
"_rev" : "1339909590",
"name" : "Name/0.006/",
"loc" : [
0.006,
0
]
}
],
"hasMore" : false,
"count" : 2,
"error" : false,
"code" : 201
}