Open
Description
First Check
- I added a very descriptive title to this issue.
- I used the GitHub search to find a similar issue and didn't find it.
- I searched the SQLModel documentation, with the integrated search.
- I already searched in Google "How to X in SQLModel" and didn't find any information.
- I already read and followed all the tutorial in the docs and didn't find an answer.
- I already checked if it is not related to SQLModel but to Pydantic.
- I already checked if it is not related to SQLModel but to SQLAlchemy.
Commit to Help
- I commit to help with one of those options 👆
Example Code
from pydantic import BaseModel
class Parent(SQLModel, table=True):
id: UUID = sm.Field(UUID, primary_key=True)
childs:List[Child]= sm.Relationship(
back_populates="parent"
)
class Child(SQLModel, table=True):
parent_id:UUID=sm.Field()
sa_column=sm.Column(
sm.ForeignKey("parentr.id")
)
parent: "Parent" = sm.Relationship(
back_populates="childs"
)
#read schemas
class IChildRead(BaseModel):
id:UUID
class IParentReadWithChilds(BaseModel):
childs:List[IChildRead]
Description
What i want to get from pydantic response schema ? I want to get a query with select lazy options, using the schema of response, because this information already contains in relationships of pydantic models.
For example:
select(Parent).options(selectinload(Parent.Childs)),
The existance of property in pydantic model gives information about the need to use selectinload. Is there any solutions for it?
Operating System
Linux
Operating System Details
any
SQLModel Version
any
Python Version
any
Additional Context
any