Arthur Pastel

Results 20 issues of Arthur Pastel

I think adding something to display that some containers have been created from the same docker-compose project could be interesting. Maybe something as htop tree view. ![image](https://user-images.githubusercontent.com/15641577/75720787-69255600-5cd7-11ea-9f23-4b4079606e02.png) If you think...

Continuing the initial work done in #89 by @Olegt0rr . Fixes #86 Fixes #87 (added it here as it interfered with the implementation)

# Suggested implementation of $elemMatch $all and $size [MongoDB Reference](https://docs.mongodb.com/manual/reference/operator/query-array/) > ## Example model: > ```py > class Thing(Model): > array: List[int] > ``` ## $elemMatch Array containing the number...

enhancement

Hello, I'm thinking to enable the aliases on the fields. It would enable a cleaner attribute validation to avoid conflicts between builtin methods and the fields for example (as already...

question

Exception while saving an object containing either a frozenset or a set: ```py from odmantic import Model, AIOEngine from odmantic.bson import ObjectId class UserModel(Model): username: str favorites_article_ids: FrozenSet[ObjectId] = frozenset()...

bug
good first issue

Hi, I'm thinking about adding something to provide static type support. To be able to use umongo with mypy for example. I think there is not really an easy way...

enhancement
help wanted