Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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!

share|improve this question
What version of mongoengine and pymongo? – Ross Feb 15 at 19:48
mongoengine 0.7.8, pymongo 2.4.2 – Nicolas Ferrari Feb 15 at 20:37

1 Answer

up vote 0 down vote accepted

Seems that querying reference fields can't be chained in 0.7.8 - so for the time being please use a dictionary and then pass in as kwargs as a work round eg:

    a_objects = A.objects(a='test')
    query_dict = {'ref__in': a_objects}
    query_dict['boolfield'] = True
    self.assertEquals(B.objects(**query_dict).count(), 1)

I have added: https://github.com/MongoEngine/mongoengine/issues/234 to be fixed in 0.8

share|improve this answer
Thanks for the answer. Indeed, problem is solved by using a dict and passing kwargs. – Nicolas Ferrari Feb 21 at 15:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.