Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
12-17-2019 06:47 AM
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!
12-17-2019 10:43 AM
Please try to get all node which has edges along with their properties
Match (n)-[r]->(m)
Return n,r,m
05-14-2021 02:12 PM
Thanks! This was really useful for me in Bloom working on an all manual data entry Knowledge Graph.
All the sessions of the conference are now available online