The best way of audit trail in Neo4j

Viewed 17

I am going to store all nodes and relations changes without impact existing code, what is the best way to do that? I've noticed APOC might fit this issue, can't find any example here.

1 Answers

You can create your custom trigger using the APOC library, according to your use case. The whole process is described here: Triggers In APOC

Or you can use the module suggested here.

Related