shell> curl -X POST --header 'accept: application/json' --data-binary @- --dump - http://localhost:8529/_api/query <<EOF
{ "query" : "FOR i IN 1..100 FILTER i = 1 LIMIT 2 RETURN i * 3" }
EOF
HTTP/1.1 Bad Request
content-type: application/json; charset=utf-8
x-content-type-options: nosniff
{
"code" : 400,
"error" : true,
"errorMessage" : "syntax error, unexpected assignment near '= 1 LIMIT 2 RETURN i * 3' at position 1:26",
"errorNum" : 1501
}