如何在 Neo4j 的 Cypher 中删除关系类型
How to drop a relationship type in Neo4j's Cypher
我正在学习 Cypher,创建了很多新关系,然后删除了。但是关系类型不是"dropped",我可以通过:
http://localhost:7474/db/data/relationship/types
如何删除关系类型?
现在只能删除 db 目录。
+1 至 。
经过一番研究,这更像是将 Neo4j DB "pointer" 切换到一个新目录。
在 windows 中,默认的数据库目录是
C:\Users\You\Documents\Neo4j\default.graphdb
我创建了一个新目录,
C:\Users\You\Documents\Neo4j\newDB
在 Neo4j 社区 window 中,请参阅 this
1. Stop
2. Browse => select/locate to the newDB directory
3. Start
这让我想起 SQL 服务器中的 attaching/detaching 数据库。每个目录都是一个DB,可以在OS里放很多DB,貌似社区版目前只能有一个DB。
我正在学习 Cypher,创建了很多新关系,然后删除了。但是关系类型不是"dropped",我可以通过:
http://localhost:7474/db/data/relationship/types
如何删除关系类型?
现在只能删除 db 目录。
+1 至
经过一番研究,这更像是将 Neo4j DB "pointer" 切换到一个新目录。
在 windows 中,默认的数据库目录是
C:\Users\You\Documents\Neo4j\default.graphdb
我创建了一个新目录,
C:\Users\You\Documents\Neo4j\newDB
在 Neo4j 社区 window 中,请参阅 this
1. Stop
2. Browse => select/locate to the newDB directory
3. Start
这让我想起 SQL 服务器中的 attaching/detaching 数据库。每个目录都是一个DB,可以在OS里放很多DB,貌似社区版目前只能有一个DB。