Hey all,
I'm currently working on a university project where I need to export my existing Neo4j Graph as RDF triples.
Right now I'm trying to figure out the best way to do that given that the database is quite large (11mil nodes, 1bil relationships).
I already found the blog post series of Jesús Barrasa, where he exported small parts of the neo4j database with the neosemantics plugin and HTTP endpoints.
So here's my question: Would that also be the way to go for exporting the complete database as RDF triples? Like defining a cypher query for querying all the nodes with all the relationships and sending it per post requenst against the HTTP endpoint? Or is there a better way to it?
Thankful for every response!