https://github.com/neo4j-graph-examples/get-started
An introduction to graph databases and Neo4j for new users
https://github.com/neo4j-graph-examples/get-started
example-data get-started graph-database neo4j-auradb-dev-approved retail
Last synced: 2 months ago
JSON representation
An introduction to graph databases and Neo4j for new users
- Host: GitHub
- URL: https://github.com/neo4j-graph-examples/get-started
- Owner: neo4j-graph-examples
- Created: 2022-11-10T15:04:40.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-28T12:18:24.000Z (6 months ago)
- Last Synced: 2025-04-15T01:51:27.041Z (6 months ago)
- Topics: example-data, get-started, graph-database, neo4j-auradb-dev-approved, retail
- Language: Python
- Homepage:
- Size: 24 MB
- Stars: 9
- Watchers: 1
- Forks: 12
- Open Issues: 2
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
:name: get-started
:long-name: Start Here
:description: An introduction to graph databases and Neo4j for new users
:icon: documentation/img/icon.svg
:tags: example-data, dataset, retail-data, retail,recommendations,northwind
:author: Ian Pollard
:data: data/northwind-data-importer-model-data.zip
:zip-file: true
:use-plugin: false
:target-db-version: 5.0
:guide: documentation/get-started.adoc
:rendered-guide: https://guides.neo4j.com/{name}/index.html
:model: documentation/img/model.svg
:example: documentation/img/example.svgimage::{icon}[width=100]
== {long-name} Graph Example
Description: _{description}_
.Model
image::{model}[].Example
image::{example}[width=600].Example Query:
[source,cypher,role=query-example,param-name=category,param-value="Dairy Products",result-column=product,expected-result=Geitost]
----
MATCH (p:Product)-[:PART_OF]->(:Category)-[:PARENT*0..]->
(:Category {categoryName:$category})
RETURN p.productName as product
----=== Setup
This is for Neo4j version: {target-db-version}
ifeval::[{use-plugin} != false]
Required plugins: {use-plugin}
endif::[]==== Data Import
0. Create empty AuraDB instance
1. Download the link:{data}[zip file^] to your computer.
2. Open Import in Neo4j Workspace (or Data Importer)
3. Use "Open Model with data" from the "..." menu to load the zip
4. Explore the model, preview the import
5. Run Import=== Feedback
Feel free to submit issues or pull requests for improvement on this repository.