Hello,

Currently I'm working on a small Python project using Neo4j. Just found out 
that one of the things I want to use is deprecated.

This is an example of what I'd like to use:
MATCH ()-[a:Knows *1..2]-()-[b:Invited *1..2]-()
RETURN a, b

As far as I understood the new versions of Neo4j will not support this 
syntax and the same query will look like:
MATCH p1 = ()-[:Knows *1..2]-(c)
MATCH p2 = (c)-[:Married *1..2]-()
RETURN relationships(p1) as a, relationships(p2) as b

which is more complex and less clear.

Question 1: when will the syntax in the first example be completely removed?
Question 2: is there a hope it could be removed from deprecated list?

Best regards,
Vasyl

-- 
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 neo4j+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to