Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Query result in openCypher is a similar rectangular result set like in SQL. See openCypher spec p. 74.


"In the RETURN part of your query, you define which parts of the pattern you are interested in. It can be nodes, relationships, or properties on these"

you can return all nodes, relationships, and paths that match a query by using this syntax

MATCH p = (a {name: 'A'})-[r]->(b) RETURN *

This is the exact opposite of a rectangular result set.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: