Query for returning edge
MATCH (a:Person)-[l:workWith]-(b:Person) RETURN a, l, b
If I execute a query and it returns three values (start node, edge, and end node), how can I modify the query to retrieve only the information about the edge
MATCH (a:Person)-[l:workWith]-(b:Person) RETURN a, l, b
If I execute a query and it returns three values (start node, edge, and end node), how can I modify the query to retrieve only the information about the edge
Comments
Post a Comment