codello / Motor-ODM

A MongoDB ODM based on Motor and Pydantic.
MIT License
17 stars 5 forks source link

Combined Queries #18

Closed codello closed 4 years ago

codello commented 4 years ago

Queries should implement boolean operators using standard python syntax. Example:

>>> q(name="name") & q(age=20)
{"$and": [{"name": "name"}, {"age": 20}]