mongoengine
mongoengine copied to clipboard
Fix an issue when filtering on list of floats with not empty
class Family(Document):
ages = ListField(field=FloatField())
when filtering with family.objects(ages__gt=[]) mongoengine raised an error ( This does not happen with list of undeclared fields) This PR fix this issue.