You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All transactions & batch operations are being done on default database.
Selecting other db will affect cypherRead/Write, but not transaction nor batch() method.
Method transaction() contains following code: var session = this.driver.session(database);
This is an invalid argument.
It should be: var session = this.driver.session({ database: database, defaultAccessMode: mode });
You have example in method above transaction: writeSession()
The text was updated successfully, but these errors were encountered:
All transactions & batch operations are being done on default database.
Selecting other db will affect cypherRead/Write, but not transaction nor batch() method.
Method transaction() contains following code:
var session = this.driver.session(database);
This is an invalid argument.
It should be:
var session = this.driver.session({ database: database, defaultAccessMode: mode });
You have example in method above transaction: writeSession()
The text was updated successfully, but these errors were encountered: