[Answer]-Build QuerySet that is not related to any model instance

1👍

You can do:

tags = Tag.objects.filter(post__isnull=True)

You can read more on lookups that span multivalued relationships here

Leave a comment