jexp / neo4j-clean-remote-db-addon

A server extension that allows cleaning the db with a single rest call (use with care)
55 stars 7 forks source link

remove this addon? #12

Open tbaum opened 11 years ago

tbaum commented 11 years ago

Hey Michael,

in favour of a simple cypher-statement:

CYPHER 1.8
    START n_all=node(*),n_0=node(0)
        MATCH (n_all)-[r_all?]-(),(n_0)-[r_0?]-()
        WHERE (n_all)<>(n_0)
    DELETE r_0,r_all,n_all

can we deprecate/discontinue this addon? I'm aware the fact, that it removes the store-files for a big dataset, anyway cleaning a store should be done for testing and not for big datasets.

cheers, Thomas