Multiple unrelated queries in Neo4j Cypher?

前端 未结 4 1097
难免孤独
难免孤独 2020-12-08 15:57

Does http://localhost:7474/browser/ not support multiple unrelated queries?

This code:

MATCH (a {cond:\'1\'}), (b {cond:\'x\'}) CREATE          


        
4条回答
  •  庸人自扰
    2020-12-08 16:12

    I'm not aware of a way to send multiple unrelated queries at once via Neo4j browser. However on REST level this is perfectly possible by using the transactional HTTP endpoint.

提交回复
热议问题