Neo4j Example
There are several ways to get data into Neo4j.
We have here chosen to use the HTTP API to send a series of Cypher CREATE commands packed into a JSON POST, which would create the data in a single transaction.
(Note that Neo4j’s RESTful API is being deprecated and should not be used.)
Another approach could be to use the neo4j-admin
tool to
import data in CSV format.
You can visualize your results using Bolt, Neo4j’s web GUI, at
http://localhost:7474/browser/
.