1
Do it the other way around, get the unique set of BaseReward
objects for where there is at least one Voucher
:
Voucher.objects.filter(is_active=True).distinct(reward)
Source:stackexchange.com
1
Do it the other way around, get the unique set of BaseReward
objects for where there is at least one Voucher
:
Voucher.objects.filter(is_active=True).distinct(reward)