I use python mongoengine.
I would like to know if it is possible to use conditions in objects.
ex:
personnes = Person.objects(name="bob" & salary=70)
I know we can use Q class to make that or Raw in json mode to query database but I prefer simple multiple condition in objects( A and B or C)