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()