In the neo4j browser
MATCH (n)
RETURN n
shows all nodes with all relationships. How does one do this in memgraph lab?
I can display the relevant nodes with relationships:
MATCH links = (Projectlist)-[:references]-(Reflist)
RETURN links
this does not shows the nodes without relationships, only the ones with relationships. What am I missing? Currently I prefer to use memgraph lab & dashboard with the style editor as this makes the visualisation easier to show to others to understand the concept.