dockerfiles/neo4j
kev e7190c7814 update 2022-11-18 13:22:33 +08:00
..
README.md update neo4j 2021-09-23 15:53:51 +08:00
docker-compose.yml update 2022-11-18 13:22:33 +08:00

neo4j

Neo4j is a highly scalable native graph database that leverages data relationships as first-class entities, helping enterprises build intelligent applications to meet todays evolving data challenges.

up and running

$ docker-compose up -d

$ docker-compose exec neo4j bin/neo4j-shell
>>> man
>>> export person_id="123"
>>> env
>>> create index on :Person(id);
>>> create (p:Person {id: {person_id}}) return p;
>>> match (p:Person {id: {person_id}}) return p;
>>> exit

$ curl http://localhost:7474/browser/