Skip to content

Instantly share code, notes, and snippets.

@diogosimao
Forked from jhgaylor/through_relationships.py
Created October 30, 2018 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save diogosimao/8fe0055fc137a3c146c347498d2ecf1d to your computer and use it in GitHub Desktop.
Save diogosimao/8fe0055fc137a3c146c347498d2ecf1d to your computer and use it in GitHub Desktop.
Example of using a through model in Django and filtering by a value on the custom through model.
class A(models.Model):
things = models.ManyToManyField("B", through=ThroughModel)
class B(models.Model):
text = models.TextField()
class ThroughModel(models.Model):
a = models.ForeignKey(A)
b = models.ForeignKey(B)
extra = models.BooleanField()
#this will return a list of ThroughModel objects
ThroughModel.objects.filter(b=instance_of_b, extra=True)
#this will return a list of A objects based on an extra field on the through table
A.objects.filter(things__ThroughModel__extra=True)
#keep in mind that limiting by one of the foreign keys on the through model is easier
A.objects.filter(things=instance_of_b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment