I'm using Neo4j 5.12
Is there a way to configure neo4j to use uuid values for id instead of incremental numbers? incremental ids are security issue and predictable.
You should not use ids for your unique keys. I suggest creating your own key. The easiest approach is using the randomUUID() method.
Thank you. Is there an automated way to add uuid values for any object added into graph db?
I found this link:
But, I can't seem to find where to add the property. When I added the apoc.uuid.enabled=true to my neo4j.conf, the graph db does not even start.
The config key-value pair goes in apoc.conf file. Create a text file with that name and place it in the same config folder.