shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/near <<EOF
{
"collection" : "products",
"latitude" : 0,
"longitude" : 0,
"skip" : 1,
"limit" : 3,
"distance" : "distance"
}
EOF
HTTP/1.1 201 Created
content-type: application/json; charset=utf-8
{
"result" : [
{
"_id" : "products/831003346",
"_key" : "831003346",
"_rev" : "831003346",
"name" : "Name/-0.002/",
"loc" : [
-0.002,
0
],
"distance" : 222.38985328911744
},
{
"_id" : "products/831396562",
"_key" : "831396562",
"_rev" : "831396562",
"name" : "Name/0.002/",
"loc" : [
0.002,
0
],
"distance" : 222.38985328911744
},
{
"_id" : "products/830806738",
"_key" : "830806738",
"_rev" : "830806738",
"name" : "Name/-0.004/",
"loc" : [
-0.004,
0
],
"distance" : 444.779706578235
}
],
"hasMore" : false,
"count" : 3,
"error" : false,
"code" : 201
}