I'm having some trouble with a related field to User in my UserProfile model.

I have this field in my UserProfile model:

friends = models.ManyToManyField(User, null=True)

When I call

User.objects.get(pk=234).get_profile().friends.all()

I get the set of friends as User objects

When I call

User.objects.get(pk=234).friends_set.all()

I get a list of UserProfile objects.

Is there a way (without changing the relationship to be with a UserProfile object) to get each side of the relationship returned as either User or UserProfile?

EDIT:

Sorry for the confusion i figured out what i was trying to do:

user = User.objects.get(pk=234)
User.objects.filter(userprofile__friends=user).all()
link|improve this question

52% accept rate
I don't understand your question. You want User objects or UserProfiles? – Sid Feb 14 at 21:42
I want either - as long as I can get the same for each side of the relationship. Right now I can only get UserProfiles for one side and User for the other side. – 9-bits Feb 14 at 21:43
feedback

2 Answers

I believe that this is the way to select the UserProfile objects which are friends with a given user:

UserProfile.objects.filter(friends__user = 234)

And here are the User objects for the same set of users:

User.objects.filter(userprofile__friends__user = 234)
link|improve this answer
Sorry i had a typo in my question - i get one side of the relationship as User objects and the other as UserProfile. How would I get both sides of the relationship as UserProfile? – 9-bits Feb 14 at 21:37
feedback

There isn't just one relationship so there is more then just the two sides you are considering. A user has a relationship with a profile object (FK) and another with numerous user objects (M2M).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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