How do I get the absolute value of the annotated field? I tried the code below but it did't work.
queryset.annotate(relevance=abs(F('capacity') - int( request.GET['capacity']) ) ).order_by('relevance')
Error:
TypeError: bad operand type for abs(): 'CombinedExpression'
Thanks in advance!