5👍
✅
It turns out the Annotate method was the solution:
Post.objects.all().annotate(vote_tally=Sum('vote__value')).order_by('-vote_tally')
Source:stackexchange.com