Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.
09-25-2019 03:25 PM
Hi,
Did any one load JSON-LD data using apoc.load.json function or cypher?
Please share your thoughts and inputs.
Thanks,
Rajendra
Solved! Go to Solution.
09-26-2019 02:39 PM
Not that I know of. I think neosemantics actually depends on APOC to do the JSON-LD import.
09-26-2019 06:28 AM
Hey,
I think you can import JSON-LD data using neosemantics - http://jbarrasa.github.io/neosemantics/
Cheers, Mark
09-26-2019 07:29 AM
Thank you Mark.
Are there any other options available other than neosemantics like APOC or Cypher?
Thanks,
Rajendra
09-26-2019 02:39 PM
Not that I know of. I think neosemantics actually depends on APOC to do the JSON-LD import.
07-01-2021 11:16 AM
After installing APOC & Neosemantics plugins, run the following cypher query.
CALL n10s.graphconfig.init();
CREATE CONSTRAINT n10s_unique_uri ON (r:Resource) ASSERT r.uri IS UNIQUE;
CALL n10s.rdf.import.fetch("file:///C:\Users\name\file_loaction\file_name.jsonld","JSON-LD");
After this step, json-ld file will be loaded and the output will have status OK & total triplets count.
You will find this link useful: Chapter 4. Importing RDF data - Neosemantics(n10s) User Guide
All the sessions of the conference are now available online