Module 1

Reading Data from Neo4j

Introduction

In this module you will learn how to 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. code to retrieve data from the graph.

What You Will Learn

You will learn how to:

Using the Movies example dataset, you will create and execute Cypher code to find actors and movies in our graph.

Domain model for this course

Here is the Full definition for data model (opens in a new tab)The labels, relationship types and properties chosen to represent a domain. used in this course. The graph contains nodes with the labels Person and Movie. Person nodes have several types of relationships to Movie nodes. A Person node can have a FOLLOWS relationship to another Person node.

Ready, let's go!