I have a directed multigraph. Using the following query, I managed to get the set of nodes that is connected with the node n1_34
MATCH (n1:Node{uuid: "n1_34"}) -[r]- (n2:Node) RETURN n2, r
This yields the nodes n1_1187, n2_2280, n2_1834 and n2_722 an...