Neo4j – Integrate Graphileon


Create a Neo4j Graph

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

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
Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s