Does http://localhost:7474/browser/ support multiple unrelated requests
This code:
MATCH (a {cond:'1'}), (b {cond:'x'}) CREATE a-[:rel]->b MATCH (a {cond:'2'}), (b {cond:'y'}) CREATE a-[:rel]->b MATCH (a {cond:'3'}), (b {cond:'z'}) CREATE a-[:rel]->b
causes an error:
WITH required between CREATE and MATCH
But since my queries are unrelated, I don't think I need WITH .
How can I do this without having to enter it one at a time?
neo4j cypher
laggingreflex
source share