Multiple unrelated queries in Neo4j Cypher?

前端 未结 4 1087
难免孤独
难免孤独 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:37

    In recent releases developers added an option in Neo4j Browser to execute multiple queries.

    Open Browser Settings and click on Enable multi statement query editor.

    Then just put semicolon on the end of each query and throw them all in browser console.

    Screenshot

    Here is how it looks

    Screenshot

提交回复
热议问题