i am just a little confused on this.  are you going to still keep the syntax
with a ":" for relationship ie.

START n=node(3)
MATCH (n)-[:BLOCKS]->(x)
RETURN x

and then if you wanted to have a more complex match you would do something
like

START n=node(3)
MATCH (n)-[r : WHERE BLOCKS && r.someprop = 'somevalue']->(x)
RETURN x

if this is the case i like the WHERE because it will help me know how to
parse the code for my C# wrapper.  

if you are planning on removing the ":" in all cases how would the first
query look?



--
View this message in context: 
http://neo4j-community-discussions.438527.n3.nabble.com/Neo4j-Cypher-syntax-feedback-wanted-tp3460651p3479337.html
Sent from the Neo4j Community Discussions mailing list archive at Nabble.com.
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to