New Blog: Run Cypher From Java

Are you a Java developer looking to take advantage of graphs and Neo4j?

There’s a new GraphAcademy course called Using Neo4j with Java , where you can learn how to integrate the Neo4j Java driver into your Java application.

Steps

The most common thing you will need to do when using Neo4j with Java is run a Cypher query and parse the results. The process is really simple:

Import the driver

Connect to a server

Verify the connection

Execute a Cypher query

Parse the results

Close the con...

Read it: Run Cypher From Java