django – convert a list back to a queryset [duplicate]

Ok…this post is now old BUT what you could do is get all the ids of the objects in your list, then perform a model.objects.filter(pk__in=list_of_ids)

Leave a Comment