1👍
✅
Normally you would do something like
category = Category.objects.get(pk=10)
products = category.product_set.all() # note that this is a queryset
Source:stackexchange.com