Hi
in my cypher query i have apoc.load.csv("%s",{}) where file path is correct
But i am getting a RuntimeError as -> Import from files not enabled, please set apoc.import.file.enabled=true in your apoc.conf; Error code 'Neo.ClientError.Procedure.ProcedureCallFailed'
but i dont have any apoc.conf file , it is embedded db
for that I change the setting as --'
Neo4jConfigurator configurator = Neo4jBuilders
.newInProcessBuilder()
.withDisabledServer()
.withConfig(GraphDatabaseSettings.procedure_unrestricted, List.of("apoc."))
.withConfig(GraphDatabaseSettings.procedure_whitelist, List.of("apoc.import."))
in GraphDatabaseSettings configurator
Still facing same error
any idea developers ?