Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 744 Bytes

README.md

File metadata and controls

35 lines (23 loc) · 744 Bytes

Spring Neo4J

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.

Installation

docker pull neo4j
docker run \
    --publish=7474:7474 --publish=7687:7687 \
    --volume=$HOME/neo4j/data:/data \
    neo4j

Go on local page. Credentials: neo4j/neo4j.

Example Queries

Find all company names:

MATCH (company:Company) RETURN company.name AS name

Links