Create a Neo4j Graph
- complete the steps in Neo4j – First Steps
- leave your GraphDB instance running
Determine the Connection Credentials
- Enter :server status into the URL Box of Neo4j Desktop
- Enter :server status into the URL Box of Neo4j Desktop

Install Graphileon
- Download Graphileon from https://graphileon.com
- Install Graphileon
- Run Graphileon
Configure Graphileon
- enter all the connection properties for our GraphDB

- create a user account

- enter the license that you were emailed by Graphileon or leave blank if you are running the limited version

- make certain you click save in every screen
- click Apply Settings
Login using your new account

Interact with your GraphDB

Graphileon pre-populates with a default cypher as follows
MATCH (n)
OPTIONAL MATCH (n)--(m)
RETURN n,m LIMIT 20
click Execute

Restrict our Search to our Nodes
MATCH (n:Person)
OPTIONAL MATCH (n)--(m)
RETURN n,m LIMIT 20

Change the Caption in the Nodes
- right click on one of the nodes
- click Styling
- edit the label entry in the Json properties for the node and set it to firstName

{
"display": "circle",
"width": 80,
"fillColor": "white",
"opacity": "1",
"lineColor": "#555",
"lineWidth": "1px",
"lineOpacity": "1",
"label": "(%).properties.firstName",
"labelPosition": "center",
"image": "properties.image",
"labelStyle": {
"font": "15px, Sans-Serif",
"color": "black",
"fontWeight": "500",
"stroke": "none",
"strokeWidth": "1"
},
"iconOpacity": 0.3,
"iconColor": "#fff",
"height": 20,
"iconClass": false
}
- click save
- close the popup
