"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.