Reputation: 75
I want to write a parametrized Query in Neo4j. For this Im writing the source code in java. But Im not getting the correct way to query it Neo4j. Can anyone tell me the entire procedure of how to give the target of Neo4j in Java and how to query it in Neo4j.
Thanks in advance.
Upvotes: 0
Views: 128
Reputation: 547
There are a lot of great examples in the Neo4j Documentation.
For Cypher queries from Java you can use the ExecutionEngine documented here:
http://docs.neo4j.org/chunked/stable/tutorials-cypher-java.html
Upvotes: 1