How to import json data into neo4j

I have json data and I want to import into neo4j.

The option to export data will be in neo4j, but how to import JSON data into neo4j.

This is the link of jsfiddle. http://jsfiddle.net/harmeetsingh090/mkdm4t44/ 

Please help if anyone knows.

+5
source share
1 answer

You can use jq to manage your data in CSV format and then use LOAD CSV .

+4
source

Source: https://habr.com/ru/post/1207194/


All Articles