I have got

Foo <=> FooGroup <=> Bar

relation, where <=> stands for ManyToMany field.

How do I retrieve all the Foos for a specific Bar instance?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Here's an example with auth models, where the relationship is very much like your structure : User <=> Groups <=> Permission

from django.contrib.auth import models
models.Permission.objects.filter(group__user=models.User.objects.get(username="webmaster"))

With your example:

Foo.objects.filter(foogroup__bar=barinstance)
link|improve this answer
Thank you. Got hard time thinking mondays :) – ohnoes Sep 7 '09 at 10:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.