I am using an embedded Neo4j database from Java. Given a property-value pair (e.g., ('id', '29384234'), I would like to find the corresponding unique node using Cypher. I've looked at a number of examples in the Neo4j documentation, but all of them assume some static id or key-value pair to identify the starting node. The Cypher Java API describes the execute(String query,Map<String,Object> params) method, but does not give any examples.
How are parameter values referenced in the query?
Alternatively, is there a better way to get at a single node given a (property name, value) pair that uniquely identifies the node?