I have some patcher to update/delete some node/relationship, but I don’t want affect real data.
For example:
When user call /patch/{id} api, I will fetch the patchers by id and apply all of them, then return the patch version of data.
When user call other api, I just return original data.
Currently I am thinking add a node:PATCH
to persist the patcher, and when user want patch version, I will do it in JAVA.
Is there any way to do this in Neo4j itself?