How does one delete the Northwind database anad just create own data schema and nodes
complete
Gregory King
complete
gregory.king@neo4j.com
Hi,
In Aura you can find an option on the instance
...
menu to reset an instance to blank (see image).If you want to do this via Cypher, you can use this snippet:
```MATCH (n)
CALL {
WITH n
DETACH DELETE n
} IN TRANSACTIONS OF 10000 ROWS```
Hope that helps!
Greg