How to delete/create databases in Neo4j?

前端 未结 12 1215
既然无缘
既然无缘 2020-12-12 11:52

Is it possible to create/delete different databases in the graph database Neo4j like in MySQL? Or, at least, how to delete all nodes and relationships of an existing graph t

12条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-12 12:28

    quick and dirty way that works fine:

    bin/neo4j stop
    rm -rf data/
    mkdir data
    bin/neo4j start
    

提交回复
热议问题