Module
Custom Cypher for Read and Write
In this module, you will write Full definition for Cypher (opens in a new tab)Neo4j's implementation of GQL, the ISO standard query language for graph databases. It is declarative: you describe the pattern to find, and the database decides how to find it. statements for new methods to read and write data in Neo4j. By the end of this module, you will have learned how to:
- Use the
@Queryannotation to specify a Cypher statement. - Write custom methods to read and write data in Neo4j.
- Update a
MovieFull definition for node (opens in a new tab)A vertex in a graph. In a property graph it can carry labels and properties. in Neo4j. - Test the application and verify results.