I want to import some information from a local html-file to neo4j.
I have tried to use apoc:
CALL apoc.load.html("file:///Local.html",{metadata:"meta", h2:"title"})
The file "Local.html" is inside the import-folder.
This does not work. I get an error:
Neo.ClientError.Procedure.ProcedureCallFailed: Failed to invoke procedure
apoc.load.html: Caused by: java.lang.RuntimeException: Can't read the HTML from: file:///Local.html
Is there any way to solve this problem? (Maybe a workaround...)