반환 값이 없을 때 None이 반환되면 나오는 오류. Coalesce() 메서드를 사용하면 해결할 수 있지만, 이상하게 적용이 안된다.
#값이 없을 때None 반환
product.room_set.filter(price__gte=200000).aggregate(low_price = Min(Coalesce('price',0), output_field=IntegerField()))
#값이 없을 때 0 반환
Product.objects.filter(room__price__gte=20000).aggregate(lower_price = Coalesce(Min('room__price',output_field=IntegerField()),0))['lower_price']
'product' 인스턴스를 통해 관리자에게 액세스할 수 없습니다.
경로 자체가 잘못됐나보다?