Skip to content

An introduction to graph databases and Neo4j for new users

Notifications You must be signed in to change notification settings

neo4j-graph-examples/get-started

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

icon

Start Here Graph Example

Description: An introduction to graph databases and Neo4j for new users

model
Figure 1. Model
example
Figure 2. Example
Example Query:
MATCH (p:Product)-[:PART_OF]->(:Category)-[:PARENT*0..]->
(:Category {categoryName:$category})
 RETURN p.productName as product

Setup

This is for Neo4j version: 5.0

Data Import

  1. Create empty AuraDB instance

  2. Download the zip file to your computer.

  3. Open Import in Neo4j Workspace (or Data Importer)

  4. Use "Open Model with data" from the "…​" menu to load the zip

  5. Explore the model, preview the import

  6. Run Import

Feedback

Feel free to submit issues or pull requests for improvement on this repository.