Description: Exploring a Star Wars Dataset in Neo4j
Source: https://www.kaggle.com/datasets/jsphyg/star-wars Video: https://www.youtube.com/watch?v=fdPWH4P4V5A
Example Query:
MATCH (s:Species)<-[:OF]-(c:Character)-[:HOMEWORLD]->(p:Planet)
WHERE s.name = $species
RETURN DISTINCT p.name as planet
This is for Neo4j version: 4.4
Rendered guide available via: :play https://guides.neo4j.com/star-wars/index.html
Unrendered guide: documentation/star-wars.neo4j-browser-guide
Load graph data via the following:
Import flat files (csv, json, etc) using Cypher’s LOAD CSV
, APOC library, or other methods.
Download the zip file star-wars.zip and add it as "project from file" to Neo4j Desktop.