1👍
✅
You could use __in
qs = qs.filter(user__in=followers)
Basically, filter only the UserAdmin
objects that are in followers
(replace user__
with the appropriate field)
Source:stackexchange.com