"how to delete/create databases in neo4j?" Code Answer

4

you can just remove the entire graph directory with rm -rf, because neo4j is not storing anything outside that:

rm -rf data/*

also, you can of course iterate through all nodes and delete their relationships and the nodes themselves, but that might be too costly just for testing ...

By corleone88 on May 23 2022

Answers related to “how to delete/create databases in neo4j?”

Only authorized users can answer the Search term. Please sign in first, or register a free account.