I'm trying to order by a count of a manyToMany field is there a way to do this with TastyPie?

For example

class Person(models.Model):
    friends = models.ManyToMany(User, ..)

I want PersonResource to spit out json that is ordered by the number of friends a person has...

is that possible?

link|improve this question

52% accept rate
feedback

1 Answer

I have not used TastyPie, but your problem seems to be more general. You can't have custom ordering in a Django ORM query. You're better off storing tuples of the form (Person, friend_count). This is pretty easy:

p_list = []
for person in Person.objects.all():
    friendcount = len(person.friends.all())
    p_list.append((person, friendcount))

Then, you can use the built in sorted function like so:

sorted_list = [person for (person, fc) in sorted(p_list, key=lambda x: x[1])]

The last line basically extracts the Persons from a sorted list of Persons, sorted on the no of friends one has.

`

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.