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" : [
{
"_key" : "11136",
"_id" : "products/11136",
"_rev" : "11136",
"Hello5" : "World5"
},
{
"_key" : "11133",
"_id" : "products/11133",
"_rev" : "11133",
"Hello4" : "World4"
}
],
"hasMore" : false,
"count" : 2,
"cached" : false,
"extra" : {
"stats" : {
"writesExecuted" : 0,
"writesIgnored" : 0,
"scannedFull" : 4,
"scannedIndex" : 0,
"filtered" : 0,
"executionTime" : 0.00021791458129882812
},
"warnings" : [ ]
},
"error" : false,
"code" : 201
}