[Answer]-Correct use of select_related

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)

Leave a comment