-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
allow accessing other databases via bolt #483
Comments
@jexp "apoc.run.bolt" will only execute queries on another Neo4j instance and show only the result without modifying the current instance while "apoc.load.bolt" will load data into the current instance as virtual nodes/rels or as actual nodes/rels, right? |
Perhaps use apoc.execute.bolt instead of apoc.run.bolt for read-write transactions Use URL with username and password OR key like in mongo/ES |
|
I looked at your file: https://github.com/larusba/neo4j-apoc-procedures/blob/issue_483/src/main/java/apoc/execute/Bolt.java Some feedback, as I can't comment there directly:
|
similar to other databases
apoc.load.bolt(url, statement, params, config)
andapoc.run.bolt(url, statement, params, config)
apoc.merge.bolt....
This will enable cross cluster operations later and also importing (sub)graphs from other databases directly without exporting the data first.
The text was updated successfully, but these errors were encountered: