neo4j-graph-examples / get-started

An introduction to graph databases and Neo4j for new users

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

An introduction to graph databases and Neo4j for new users


Languages

Language:Python 100.0%