Module 3
Reading Data from Neo4j
In this module, you will create the movie domain model for your application. You will create domain classes, repositories, and controllers to read data from Neo4j. By the end of this module, you will have learned how to:
- Create the movie domain model for your application.
- Create domain classes for 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. in the graph model.
- Create repository classes and controllers for accessing data.
- Test the application and verify results.