This repository contains the Neo4j-Json-IO utility for exporting Neo4j databases into JsonGraph format.
The latest release version of Neo4j-Json-IO can be downloaded here.
Neo4j-Json-IO requires the Java Runtime Environment version 16 or higher. The JRE 16 is available here.
Exporting a .json.gz
file from Neo4j is done using the following command.
> java -jar Neo4j-Json-IO.jar --export /path/to/file.json.gz -e bolt://localhost:8083 --username user --password pass
If authentication is disabled, the username and password parameters can be ignored.
> java -jar Neo4j-Json-IO.jar --export /path/to/file.json.gz -e bolt://localhost:8083
Usage: Neo4j-Json-IO.jar [-h] [-e=<endpoint>] [--export=<filePath>]
[--password=<password>] [--username=<username>]
-h, --help print this message
--export=<filePath> Path to the exported file
-e, --endpoint=<endpoint> Endpoint of a running Neo4j instance
--username=<username> Neo4j username
--password=<password> Neo4j password