vote up 1 vote down star
1

Given the Model:

class Profile(models.Model):
    user = models.ForeignKey(User, unique=True)

class Thingie(models.Model):
    children = models.ManyToManyField('self', blank=True, symmetrical=False) 

class Relation(models.Model):
    profile = models.ForeignKey(Profile)
    thingie = models.ForeignKey(Thingie)

How would one return a QuerySet containing all Profile instances related to a given Thingie? That is, every Profile that has a foreign key pointing to it from a Relation and to the given thingie.

I know all about select_related(), and how I could use it to do this by iterating but i find iterating irritating (badoop bah!). Also, values_list() has been looked at, but it doesn't quite do the right thing.

Please help! Thanks!

flag
Huh? What's the relationship between Profile and Relation? What's the relationship between Relation and Thingie? What are GrooveUser and Media? Please try to distill your question to its simplest meaningful form. – ozan Sep 9 at 1:21
My bad, I accidentally left in some real code instead of simplified snippet/example code. Fixed now, thanks! – neuman Sep 9 at 2:31

3 Answers

vote up 2 vote down check

Do you definitely need it to be a queryset? If you only need it to be an iterable, a simple expression for your purposes is:

profiles = [r.profile for r in thingie.relation_set.all()]

I'm not sure if a list comprehension counts as irritating iterating, but to me this is a perfectly intuitive, pythonic approach. Of course if you need it to be a queryset, you're going to do something messier with two queries, eg:

relation_values = thingie.relation_set.all().values_list('pk', flat=True)
profiles = Profile.objects.filter(relation__in=relation_values)

See the "in" documentation for more. I prefer the first approach, if you don't need a queryset. Oh and if you only want distinct profiles you can just take set(profiles) in the first approach or use the distinct() queryset method in the second approach.

link|flag
List comprehension definitely works well, but the OP was complaining about iterating (which is basically what a list comprehension does)... – Gabriel Hurley Sep 9 at 2:59
vote up 0 vote down

Did you read the Django doc on Making queries? It has a simple example of achieving what you want, more specifically Lookups that span relationships. Make sure you refer the code snippets in the latter link to the model code at the beginning of the page.

link|flag
Yes I have read the documentation end-to-end quite a few times. However, I seem only to be able to get comparison information by spanning relationships(IE: find me all Thingies where thingie.profile.user = X), not actual instances themselves (IE: Find me all relation.profiles where relation.thingie = y). – neuman Sep 9 at 2:28
vote up 0 vote down

Without defining a direct relationship between Profile and Thingie, you can't.

The best way would be to add a ManyToMany to Thingie that points to Profile and use the through argument (django docs) on the ManyToMany to specify your Relation model/table.

That way you can do a direct filter operation on Thingie to get your profiles and still store your intermediate Relation data.

link|flag
I may end up using this because it is more in line with Django best practices, but I felt the second part of the above answer was more accurate for this question. Thanks! – neuman Sep 9 at 3:48

Your Answer

Get an OpenID
or

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