Hi guys,
I'm currently learning neo4j and trying to use APOC library in my java project. Specifically, I'd like to build a application that can use APOC's functionality to do batch update to my graph.
However, I don't know how to use APOC in Java. I have read this article:Using APOC Procedures on an Embedded Database from Java, but it seems like I'm using a "normal" deployment which is different from this topic holder.
So my question is:
- Do I have to add more dependencies to my pom file? If yes, what are they?
- Now I only know how to use session.run() to execute cypher query in java. To use APOC, what I should do? A code snippet will be well appreciated. For example, just use "CALL apoc.create.node()" to create a node with some properties and label.
Thank you so much!