Graph to Relational

In this session we’re going to show how to take an existing relational database, import it into Neo4j and write some queries against it

Importing Northwind into Postgres SQL

We’ll use the classic Northwind dataset as our example

createdb -U postgres london.meetup
psql -U postgres -d london.meetup < data/northwind.postgre.sql

You can then browse the data using pgadmin or similar.

Export the data

Import the data