Hello,
I'm working out of the *Neo4j 2.0.1
console*(http://localhost:7474/webadmin/#/console/), and I am trying to test
cypher
parameters.
Is there any way to do this solely within the console?
For instance, the following two queries should return the same results (The
2nd query is using psuedo-code).
*(1) Cypher that will work:*
MATCH (p:Place)-[]-(e:Event) WHERE e.title = "Book Fair" RETURN p.name,
e.title, e.start, e.end;
*(2) Cypher with parm/variable psuedo-code:*
DECLARE *"eventTitle"* = "Book Fair"
MATCH (p:Place)-[]-(e:Event) WHERE e.title = *{eventTitle}* RETURN p.name,
e.title, e.start, e.end;
Thanks!
--
You received this message because you are subscribed to the Google Groups
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.