We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
would soft deletion trigger a related data delete if we use a ReferenceField? Example:
class ProfilePage(Document): employee = ReferenceField('Employee', reverse_delete_rule=mongoengine.CASCADE)
would deletion of employee also delete the ProfilePage?
The text was updated successfully, but these errors were encountered:
For now mongoengine-softdelete doesn't deal at all with reverse deletion rule. So I would say no.
Best would be to fire up a test and have a working example. I'm gonna see about that.
(also sorry for the answer delay :/)
Sorry, something went wrong.
No branches or pull requests
would soft deletion trigger a related data delete if we use a ReferenceField? Example:
would deletion of employee also delete the ProfilePage?
The text was updated successfully, but these errors were encountered: