shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/all <<EOF
{ "collection": "products", "skip": 2, "limit" : 2 }
EOF
HTTP/1.1 201 Created
content-type: application/json; charset=utf-8
{
"result" : [
{
"Hello2" : "World2",
"_id" : "products/800660178",
"_rev" : "800660178",
"_key" : "800660178"
},
{
"Hello3" : "World3",
"_id" : "products/800987858",
"_rev" : "800987858",
"_key" : "800987858"
}
],
"hasMore" : false,
"count" : 2,
"cached" : false,
"extra" : {
"stats" : {
"filtered" : 0,
"scannedFull" : 5,
"scannedIndex" : 0,
"writesExecuted" : 0,
"writesIgnored" : 0
},
"warnings" : [ ]
},
"error" : false,
"code" : 201
}