I would like to get all django models that depend (has foreign key) on a particular auth_user
(User model)
The SQL version of this would look something like this except that example isn't recursive as i would like to.
Ideally i would like to delete any related data to a particular User
without destroying that User, like triggering the cascade-delete but skipping the deleting of the root object, in this example the user.