Hi, I know how to build filters and Q objects in django, but I don't know how to negate the operators that the API provides, for example for the contains operator I would like something like notcontains.
e.g.
q=Q(name__notcontains="SomeString")
This would get me all objects whose name do not contain "SomeString".
Is there some syntax that I'm missing?
Thankyou.