Socket
Socket
Sign inDemoInstall

@gertt/cypher-clone

Package Overview
Dependencies
12
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @gertt/cypher-clone

Clone a Neo4j database using only Cypher queries


Version published
Maintainers
2
Created

Readme

Source

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));

Keywords

FAQs

Last updated on 19 Feb 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc