mirror of https://gitee.com/bigwinds/arangodb
35 lines
752 B
Plaintext
35 lines
752 B
Plaintext
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/near
|
|
{ "collection": "products", "latitude" : 0, "longitude" : 0, "skip" : 1, "limit" : 2, "radius" : 500 }
|
|
|
|
HTTP/1.1 201 Created
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"result" : [
|
|
{
|
|
"_id" : "products/1333487062",
|
|
"_key" : "1333487062",
|
|
"_rev" : "1333487062",
|
|
"name" : "Name/0.002/",
|
|
"loc" : [
|
|
0.002,
|
|
0
|
|
]
|
|
},
|
|
{
|
|
"_id" : "products/1333093846",
|
|
"_key" : "1333093846",
|
|
"_rev" : "1333093846",
|
|
"name" : "Name/-0.002/",
|
|
"loc" : [
|
|
-0.002,
|
|
0
|
|
]
|
|
}
|
|
],
|
|
"hasMore" : false,
|
|
"count" : 2,
|
|
"error" : false,
|
|
"code" : 201
|
|
}
|