How to create a new database in neo4j through neo4j .net readify client?? by default it takes me to the same database
Asked
Active
Viewed 272 times
1 Answers
1
Neo4j does not have a concept of multiple databases. Either run Neo4j on different ports with different graph.db
directories or use multiple subgraphs in one Neo4j instance.

Stefan Armbruster
- 39,465
- 6
- 87
- 97
-
how to create subgraphs?are subgraphs similar to labels?? – Naved Mir Apr 09 '14 at 14:04
-
subgraphs are just parts of your graphs having not relationships in between, so you cannot navigate between them. This has nothing to do with labels. However you can use distinct labels for different parts of your graph. – Stefan Armbruster Apr 09 '14 at 14:32