hd10180

Results 5 comments of hd10180

after debug i found: the find query's limit, skip, sort_expressions doesn't pass to the aggregation. see https://github.com/roman-right/beanie/blob/main/beanie/odm/queries/find.py#L527-L556 ```python def aggregate( self, aggregation_pipeline: List[Any], projection_model: Optional[Type[FindQueryProjectionType]] = None, session: Optional[ClientSession] =...

face the same problem too

This is my solution, but I don't know if it lacks necessary considerations. ```python DocType = TypeVar("DocType", bound="Base") class Base(Document): id: PydanticObjectId = Field(default_factory=PydanticObjectId) def model_copy( self: DocType, *, update:...

same problem here. but my issue is i turn on system proxy(such as clash verge's system proxy). when i turn off the system proxy it works fine.