mirror of https://gitee.com/bigwinds/arangodb
35 lines
683 B
Plaintext
35 lines
683 B
Plaintext
shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/by-example <<EOF
|
|
{ "collection": "products", "example" : { "a.j" : 1 } }
|
|
EOF
|
|
|
|
HTTP/1.1 201 Created
|
|
content-type: application/json; charset=utf-8
|
|
|
|
{
|
|
"result" : [
|
|
{
|
|
"_id" : "products/1503775987",
|
|
"_key" : "1503775987",
|
|
"_rev" : "1503775987",
|
|
"i" : 1,
|
|
"a" : {
|
|
"j" : 1
|
|
}
|
|
},
|
|
{
|
|
"_id" : "products/1503448307",
|
|
"_key" : "1503448307",
|
|
"_rev" : "1503448307",
|
|
"i" : 1,
|
|
"a" : {
|
|
"k" : 1,
|
|
"j" : 1
|
|
}
|
|
}
|
|
],
|
|
"hasMore" : false,
|
|
"count" : 2,
|
|
"error" : false,
|
|
"code" : 201
|
|
}
|