Module 4
Writing Data to Neo4j
In this module, you will use the movie domain class to write new Full definition for node (opens in a new tab)A vertex in a graph. In a property graph it can carry labels and properties. and Full definition for relationship (opens in a new tab)A named, directed connection between two nodes. Every relationship has a type, a start node and an end node. to Neo4j. By the end of this module, you will have learned how to:
- Create new
Movienodes in Neo4j from your Java application. - Create new
ACTED_INrelationships in Neo4j from your Java application. - Delete a
Movienode and relationships from Neo4j. - Test the application and verify results.