thingdom / node-neo4j

[RETIRED] Neo4j graph database driver (REST API client) for Node.js
Apache License 2.0
925 stars 135 forks source link

Dose Transaction support Http POST\GET method? #180

Closed pangguoming closed 8 years ago

pangguoming commented 8 years ago

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 8 years ago

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

pangguoming commented 8 years ago

ok, i got it ,thanks