I\'m trying to filter many-to-many relationship by some through Class field.
Quoting the Django documentation, i will explain my goal
You can query across relationships with the django ORM (or in this case the reverse relationship):
person = Person.objects.filter( membership__group=example_group, membership__date_joined__gte=example_date )