Hello,
In Neo4j browser the following mutli statement succeeds, but doesn't show any output, neither in graph or table form
CREATE (a)
CREATE (b)
CREATE (a)-[:KNOWS]->(b);
MATCH (n) RETURN n
Obviously executing the last line separately show the expec...