4👍
✅
Manager.filter()
returns a QuerySet
, not a Model
. QuerySet.delete()
doesn’t invoke Model.delete()
but rather operates directly on the database.
Source:stackexchange.com