Jakub Nowakowski
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