Sorry if the question sounds weird. I am just wondering if there is possible to make new queryset when I already have a queryset.
For example here...
The best you can do is:
active_users = User.objects.filter(active=True) not_deleted = active_users.filter(is_deleted=False) deleted = active_users.filter(is_deleted=True)
So the answer to your question may be yes, if I understand it correctly.