-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
Hi, it should be possible to get statements from the actions (insertNode..) to use your transaction api effectively.
e.g
//Insert node and get the statement
var statement = db.insertNode({
name: 'Darth Vader',
sex: 'male'
},function(err, node){
if(err) throw err;
// Output node properties.
console.log(node.data);
// Output node id.
console.log(node._id);
});
//Begin transaction
var id = db.beginTransaction(callback, statement);
db.commitTransaction(id, callback);
//...or similiar
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels