I try to send a simple Cypher query to neo4j 2.1.3 and get a 500 response:
POST : http://localhost:7474/db/data/cypher
data = {
"query" : "MATCH (it) return it limit 10"
}
Tried different variations of including the following header:
{'content-type': 'application/json',"Accept": 'application/json'}
All resulted in the same 500 http response.
Btw .. Regular Rest API requests such as : http://localhost:7474/db/data/node
works just fine..