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
CALL apoc.load.json("file:///business.json") YIELD value
return value limit 5
I get an error stating:
Failed to invoke procedure apoc.load.json: Caused by: java.lang.RuntimeException: Import from files not enabled, please set apoc.import.file.enabled=true in your neo4j.conf
After setting this conf in the neo4j.conf importing jsons works, but I have to specify full machine length, instead of load.json using the default directory specified by dbms.directories.import=import, which would allow me to use calls like below for files in import folder:
CALL apoc.load.json("file:///business.json") YIELD value
return value limit 5
The text was updated successfully, but these errors were encountered:
I am using neo4j CE 3.2.3 with the latest build APOC for 3.2 branch.
Following example from https://github.com/neo4j-contrib/neo4j-apoc-procedures/blob/3.2/src/test/java/apoc/config/ConfigTest.java
I have set the conf to:
If I try to import a json file like this:
I get an error stating:
After setting this conf in the neo4j.conf importing jsons works, but I have to specify full machine length, instead of
load.json
using the default directory specified bydbms.directories.import=import
, which would allow me to use calls like below for files inimport
folder:The text was updated successfully, but these errors were encountered: