thingdom/node-neo4j

Dose Transaction support Http POST\GET method?

pangguoming opened this issue · 2 comments

when do something like :
var tx = db.beginTransaction();
tx.http({
method: 'GET',
path: "/db/data",
body: {
}
}, finish);

i get error: tx.http({
^
TypeError: undefined is not a function

Nope, transactions only support Cypher queries. This is a Neo4j limitation, not unique to this driver.

ok, i got it ,thanks