[Answered ]-Filter queryset only where the user is added to ManyToManyFIeld

1👍

You can filter with:

Lead.objects.filter(buyer=request.user)

this will make an INNER JOIN, and return only Lead objects where request.user is (one of) the buyers.

Leave a comment