Execute multiple statements
You can send multiple Cypher statements in the same request. The response will contain the result of each statement.
Example request
-
POST http://localhost:43573/db/neo4j/tx/commit
-
Accept: application/json;charset=UTF-8
-
Content-Type: application/json
{
"statements" : [ {
"statement" : "MATCH (n) WHERE ID(n) = $nodeId RETURN n",
"parameters" : {
"nodeId" : 2
}
} ]
}
Example response
-
200: OK
-
Content-Type: application/json;charset=utf-8
{
"results" : [ {
"columns" : [ "n" ],
"data" : [ {
"row" : [ { } ],
"meta" : [ {
"id" : 2,
"type" : "node",
"deleted" : false
} ]
} ]
} ],
"errors" : [ ]
}
Was this page helpful?