shell> curl -X PUT --data-binary @- --dump - http://localhost:8529/_api/simple/fulltext <<EOF
{
"collection" : "products",
"attribute" : "text",
"query" : "word"
}
EOF
HTTP/1.1 201 Created
content-type: application/json; charset=utf-8
{
"result" : [
{
"_id" : "products/817568466",
"_key" : "817568466",
"_rev" : "817568466",
"text" : "this text contains word"
},
{
"_id" : "products/817765074",
"_key" : "817765074",
"_rev" : "817765074",
"text" : "this text also has a word"
}
],
"hasMore" : false,
"count" : 2,
"error" : false,
"code" : 201
}