How to clean the properties of neo4j after deleting all data?

1

I was doing a test with neo4j and of course I found myself in front of many nodes and then I decided to clean everything, so I could start working with an application. Then I ran the following command:

match ( n ) detach delete n

He then cleared all the knots I had, as expected !! The issue is that they stayed in the

  

Database Information in the Property Keys field

Some tags I've used before !! How can I remove them?

Here is an image of how it was after I removed all the nodes:

I would like to remove everything that is circled with red.

    
asked by anonymous 24.08.2016 / 22:56

1 answer

2

You should be able to clean everything up by:

  • Stop your Neo4j database
  • Excluding all corresponding data / graph.db / * (look inside the graph.db folder)
  • Reactivate the database
13.02.2017 / 22:23