Begin and commit a transaction in one request
Begin and commit request
If there is no need to keep a transaction open across multiple HTTP requests, you can begin a transaction, execute statements, and commit within a single HTTP request.
Example request
-
POST http://localhost:7474/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": 7
}
}
]
}
Example response
-
200: OK
-
Content-Type: application/json;charset=utf-8
{
"results" : [ {
"columns" : [ "n" ],
"data" : [ {
"row" : [ { } ],
"meta" : [ {
"id" : 7,
"type" : "node",
"deleted" : false
} ]
} ]
} ],
"errors" : [ ]
}
Was this page helpful?