I need to make a query with a negation. In Django I would use exclude()
but regarding to the MongoEngine doc exclude means something different.
Is there an query operator or a different function to make a negation?
Example:
MyClass.objects.exclude(attribute="test")