Jakub Nowakowski

Results 33 comments of Jakub Nowakowski

Works for me as well, why don't we merge it

Bumping. It can be worked around with some if statements (ideally switch case in new python), but still pollutes the code notably.

> I think the [answer](https://github.com/tiangolo/sqlmodel/issues/178#issuecomment-989908481) of [mkarbo](https://github.com/mkarbo) is just perfect. It's not perfect, as it introduces code redundancy. Assume you have a model for Fastapi endpoint input validation: ``` class...

@tiangolo @antont @barseghyanartur @srausser @Spenhouet Buuuump. Can we make it visible to the world somehow?

Bumping. Have this been adressed? I seem to have the same issue. All relations are loaded from database regardless if they are displayed in list view or not. Also `The...

``` query = ( select(Team) .join(Membership, Membership.team_id == Team.id) .options(joinedload(Team.heroes)) .where(Team.id == id) ) ``` should work for you

Consider also: - is_() - isnot() Very simple, yet potentially useful for None values.

On the other hand, I love how extendable FastCRUD class is. I was able to easily override `create()` and `get()` methods to make EndpointCreator work the way I needed. That's...

[SQLAlchemy2](https://docs.sqlalchemy.org/en/20/core/operators.html#comparison-operators) provides comprehensive list of supported operators. We might pick those which we consider worth supporting. I could volunteer on working on that, I'm just not sure how we would...

Exactly, that's the idea. Let's say in 75% cases generic CRUD will be sufficient. In other 25% cases, user should be able to override the statement (eg. to perform some...