You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2021. It is now read-only.
Export the data to a GraphML file with neo4j-shell.
Load it with the org.neo4j.shell.tools.imp.format.graphml.XmlGraphMLReader class of the import tools JAR.
This is far too complicated, so we should simplify this and load the data with Cypher instead. However, this would require us to implement 30+ LOAD CSV queries manually.
I discussed this on the Neo4j users slack and it seems that implementing a stored procedure would be the best way to do this: neo4j-contrib/neo4j-apoc-procedures#489
The text was updated successfully, but these errors were encountered:
It turned out that GraphMLs are a lot more complicated to maintain (the CSVs are no longer a 'single source of truth'), so we should implement this, especially that neo4j-contrib/neo4j-apoc-procedures#489 was resolved this summer.
szarnyasg
changed the title
Use LOAD CSV to generate expected results
Use APOC CSV loader to generate expected results
Oct 11, 2018
Our current workflow for generating expected test result looks as follows:
neo4j-import
.neo4j-shell
.org.neo4j.shell.tools.imp.format.graphml.XmlGraphMLReader
class of the import tools JAR.This is far too complicated, so we should simplify this and load the data with Cypher instead. However, this would require us to implement 30+
LOAD CSV
queries manually.I discussed this on the Neo4j users slack and it seems that implementing a stored procedure would be the best way to do this: neo4j-contrib/neo4j-apoc-procedures#489
The text was updated successfully, but these errors were encountered: