Hi! I would like to clarify if the following is a bug for Neo4j 4++ (4.2.1 Desktop):
After creating apoc.conf
file with apoc.export.file.enabled=true
line. I restarted Neo4j DB, and was able to call a simple export function
call apoc.export.csv.query('MATCH (n) RETURN (n) LIMIT 10', 'hello.csv',{})
I would like to programmatically check if this setting is enabled in my code before I make the export call. However, when I do call dbms.listConfig()
, it shows that it is still set to "false".
The same happens for apoc.import.file.enabled=true
.
I will do a workaround to parse the apoc.conf
file for now. But my guess is this is a bug that is a result of Neo4j 3.5+ config..