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
Introduce transactionConfig to Driver.executeQuery (neo4j#1160)
Transaction config enables the user to configure timeouts and set metadata for the transaction.
This configuration is already present in APIs such as `Session.executeRead` and `Session.executeWrite`.
Usage example:
```typescript
const { records } = await driver.executeQuery(myQuery, myParams, {
database: 'neo4j',
transactionConfig: {
timeout: 3000,
metadata: { key: 'value' }
}
})
```
['config.bookmarkManager set to non-null/empty','q',{},{bookmarkManager: theBookmarkManager},extendsDefaultWith({bookmarkManager: theBookmarkManager})],
0 commit comments