Hi, I am new to neo4j. I am trying to import xml to neo4j to visualise another database system in XML format. It is a custom XML so I think I have to modify a bit in order to do so.
what I have tried is using call apoc.load.xml to import the xml file.
but the error message is
Neo.ClientError.Procedure.ProcedureCallFailed: Failed to invoke procedure apoc.load.xml: Caused by: org.xml.sax.SAXParseException; lineNumber: 6; columnNumber: 21; The entity name must immediately follow the '&' in the entity reference.
for line 6 of the xml file, it is something like "< FieldCatalog>", and I have replaced all the "&" into other characters. May be it is better to extract some interested tags and import to neo4j.
That error message indicates that your xml file is syntactically not valid or not even well formed. You need to fix the xml file first prior to import.