> Model.objects.annotate(Count('foos')).filter(foos__lt=10)
Model.objects.annotate(foos=Count('foos')).filter(foos__lt=10)