What is the syntax for passing a parameter to a Cypher query when using the Neo4j Browser?
Specifically, how would you pass a list of dictionaries to execute example 3.3.6.4 from the documentation in the neo4j browser?
What is the syntax for passing a parameter to a Cypher query when using the Neo4j Browser?
Specifically, how would you pass a list of dictionaries to execute example 3.3.6.4 from the documentation in the neo4j browser?
As @TomGeudens indicated, you can use :help param
and :help params
in the neo4j browser to see the relevant browser commands.
In your specific example, you can use this browser command to create the $events
parameter:
:param events: [{year: 2014, id: 1}, {year: 2014, id: 2}]