collerek

Results 101 comments of collerek

Hi, This project seems stale and from what I saw on encode page it's not a priority right now. Since I was tired with reinventing the wheel and needed something...

Hi, This project seems stale and from what I saw on encode page it's not a priority right now. Since I was tired with reinventing the wheel and needed something...

What happens is that when you query by the id of the related model (`project__id=project_id`) so the Project model is added automatically to `select_related` and since you do not provide...

Yep if you won't join you don't need to exclude the related. I will leave this issue open as when you provide `fields` for the main model and do not...

Hi, I saw that the deep copy change was reversed in latest release, can you manually decrease the pydantic version below 1.9.2 and check again

I just checked it with pydantic 1.10.2 and it works as expected ```python from datetime import datetime import databases import pytest import sqlalchemy import ormar from tests.settings import DATABASE_URL database...

What about slicing also the querysetproxy to allow slicing the related models?

Since both options are mutually exclusive (you cannot have nulls both last and first at the same time) that should be a single option, something like: `nulls_ordering` that accepts an...