I have started using neo4j and I have several versions of a graph in my neo4j database (the only thing that changes is the timestamp at the top node).
I was wondering how to get only the relations to that one node. I currently use this:
"START n=node(*) MATCH (n)-[r]->(m) RETURN n,r,m;"
But this just displays all of them. I know I have to change the n=node(*) but I don't know to what. (the name of the top node is: Info) so maybe something like
"START n=node(i:Info{timeStamp:'20/04/2018'}) MATCH (n)-[r]->(m) RETURN n,r,m;"
but that would just give me the relations to that one node... and I need the whole graph