2.1.0 • Published 9 months ago

@gertt/cypher-clone v2.1.0

Weekly downloads
2
License
MIT
Repository
-
Last release
9 months ago

cypher-clone

Clone a Neo4j database using Cypher queries.

Not recommended for important tasks like backups because:

  • Performance probably sucks
  • Could explode if new node are added to source database while syncing
  • ...

Usefull if you don't have access to your remote Neo4j instance's backups or are not able to connect using neo4j-admin.

Usage

npm install --save @gertt/cypher-clone

CLI tool:

cypher-clone bolt://source.database:7687 bolt://localhost:7687

In code:

const sync = require('@gertt/cypher-clone');

sync(
    'bolt://source.database:7687',
    'bolt://localhost:7687'
).catch(err => console.log(err));
2.1.0

9 months ago

2.0.1

1 year ago

2.0.0

3 years ago

1.0.1

6 years ago

1.0.0

6 years ago