Hi, I am new in neo4j, so I have a basic question. I use the movie example database. What I need is a query with following result: get all nodes and for every node (source) all connected nodes (with properties) and the relation between the source node and the connected node. (with properties).
I need this informations (with all properties) for coloring the nodes and the relations.
So, the original neo4j-browser shows the names of nodes and relations, regardless of the node type. I I I can see the query:
MATCH (n) RETURN n LIMIT 25
But how are the relations selected?
How I can accomplished them?
Thanks!