I would like SELECTall to_friendsfor which from_friend= a specific User.
You can get all Friendship objects for this step like this:
friendships = Friendship.objects.filter(from_friend=some_user)
to_friend , values_list :
friends = friendships.values_list("to_friend", flat=True)
friends - ValuesListQuery, , . filter().