The purpose of this project is to play with Neo4J integrated with Spring. This project is a sample Know Your Customer Application for Service Provider Company in computing.
docker pull neo4j
docker run \
--publish=7474:7474 --publish=7687:7687 \
--volume=$HOME/neo4j/data:/data \
neo4j
Go on local page. Credentials: neo4j/neo4j.
Find all company names:
MATCH (company:Company) RETURN company.name AS name