I have a model Profile (user's profile) and it has many to many relation to self named followings. This manages followers / followings system like one in twitter.
class Profile(models.Model):
followings = models.ManyToManyField('self', blank = True, related_name = 'followers')
I can get followings just get followings of an User but how to query followers of a user using django model query?