[Answer]-Filtering using queryset in django with the attribute in a given set

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)

Leave a comment