Dose Transaction support Http POST\GET method?
pangguoming opened this issue · 2 comments
pangguoming commented
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
aseemk commented
Nope, transactions only support Cypher queries. This is a Neo4j limitation, not unique to this driver.
pangguoming commented
ok, i got it ,thanks