I've got the flowing two models:

class Item(models.Model):
    Name = models.CharField(max_length = 32)

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

    ItemList = models.ManyToManyField(Item, related_name = "user_itemlist")

For Item X I want to get a list of Item objects present in ItemList for all Profile objects that contain X in ItemList, sorted by how many times each object appears.

The best I can do so far is:

Item.objects.filter(user_itemlist__in = User.objects.filter(profile__ItemList = X))

and this returns the list of all Item objects I need, with duplicates (if Item Z is present in ItemList for 10 Profile objects it will appear 10 times in the query result).

How can I sort the result of the above query by the number of times each object appears in the result and remove duplicates? Is there any "django" way to do that?

link|improve this question

feedback

2 Answers

if you're using django 1.0+ you can do this:

from django.db.models import Count
# note that 'profile' is an instance of Profile, not the model itself
sorted_items = profile.ItemList.annotate(itemcount=Count('name'))
sorted_items = sorted_items.order_by('-itemcount')

#number of occurences of top item
sorted_items[0].itemcount
link|improve this answer
Not sure I understand, but I don't think the syntax is correct: AttributeError: 'ReverseManyRelatedObjectsDescriptor' object has no attribute 'annotate' – dandu Jan 6 '10 at 20:11
1  
I think I have the solution, inspired by your answer, not sure yet: Item.objects.filter(user_itemlist__in = User.objects.filter(profile__ItemList = X)).annotate(itemcount=Count('id')).order_by('-itemcount') – dandu Jan 6 '10 at 20:25
that error means that you were using Profile (the class with a capitol 'P') instead of profile (and instance of the class) – Jiaaro Jan 6 '10 at 21:09
yes I see, anyway your query sorts only the items from one profile, not exactly what I was looking for, thanks anyway your answer was helpful. – dandu Jan 6 '10 at 22:00
feedback
up vote 1 down vote accepted
profiles = Profile.objects.filter(profile__ItemList=X)

Item.objects.filter(
    user_itemlist__in=profiles
).annotate(itemcount=Count('id')).order_by('-itemcount')
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.