I have two samples in an application built using Django:
class User(models.Model):
email = models.EmailField()
class Product(models.Model):
user = models.ForeignKey(User)
I want to filter out all users who don't have any products in the store.
How do I do this?