Having these 2 MongoEngine Documents:
class A(Document):
a = StringField()
class B(Document):
b = StringField()
boolfield = BooleanField(default=False)
ref = ReferenceField(A)
I'd like first to filter() on a specific A object, and then, from the first query, filter() on the BooleanField. But these lines cause an error:
a_objects = A.objects(a='test') # OK
query = B.objects(ref__in=a_objects) # OK
query2 = query.filter(boolfield=True) # FAILS
The error is:
TypeError: 'Collection' object is not callable. If you meant to call the '__deepcopy__' method on a 'Collection' object it is failing because no such method exists.
See the full code and traceback here: https://gist.github.com/nferrari/4962245
Thanks!