Skip to content
Discussion options

You must be logged in to vote

Use selectinload to properly pre-load relationships:

    async def fetch_one(self, pk: UUID | None = None, **kwargs: Any) -> Patient:
        return await session.get(Patient, pk, options=[selectinload(Patient.user)])

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by YuriiMotov
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
2 participants