You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Neo4j User
Hi there,
Wes Freeman just contributed some nice additions to the WITH Cypher
capabilities that let you limit and order the amount of results passed
to the next query:
START n=node(3)
MATCH n--m
WITH m
ORDER BY m.name desc
LIMIT 1
MATCH m--o
RETURN o.name