cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

mahesh_jayachan
Node
since ‎08-26-2021
‎01-24-2023

User Statistics

  • 5 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

In the docker environment. I am trying to upgrade the neo4j version from 4.4.3 to 5.2.0  I am facing the below error Failed to read config /var/lib/neo4j/conf/neo4j.conf: Unrecognized setting. No declared setting with name: apoc.export.file.enabled. ...
I am a newbie to Neo4j. Tried below code MATCH (n) WITH DISTINCT labels(n) AS label UNWIND label AS names WITH names AS candidate WHERE candidate =~ '^(.?$|[^I].+|I[^A].)' CALL apoc.create.setProperty(labels(candidate),'link','') YIELD node return n...