You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using the filter method the "deleted__isnull" is not working. I have foreign key relations in the table which are already not handled by default. So i tried to handle it manually via the filter method. count = feed.service.filter(deleted__isnull=True).count()
The deleted field is showing up in the table and the deleted method does soft delete the record.
The text was updated successfully, but these errors were encountered:
When using the filter method the "deleted__isnull" is not working. I have foreign key relations in the table which are already not handled by default. So i tried to handle it manually via the filter method.
count = feed.service.filter(deleted__isnull=True).count()
The deleted field is showing up in the table and the deleted method does soft delete the record.
The text was updated successfully, but these errors were encountered: