I\'ve got a function built into my Django model class and I want to use that function to filter my query results.
class service: ...... def i
You may not be able to, instead you can post-process the queryset with a list comprehension or generator expression.
For example:
[x for x in Q if x.somecond()]