Hi,
if we have a whole tree of entities connected via foreign keys that was marked soft deleted (via @SoftDelete annotation) by Hiberante, how can we hard delete it?
I have a use-case where soft deleted entities should be hard deleted after 30 days.
There is no way of “hard” deleting entities you marked for @SoftDelete
. The only way to get around that is to use native mutation queries.