First Check
Commit to Help
Example Code
class Book(SQLModel, table=True):
id: Optional[int] = Field(default=None, primary_key=True)
title: str
description: str
Description
Before sqlmodel I used pydantic modle as input and output Schema . But now i m switched with the sqlmodel but i have some issue , some field(like password) that i don,t want to gave to the user in output schema how it will be restricted:
Operating System
Linux
Operating System Details
No response
SQLModel Version
0.0.6
Python Version
3.9.5
Additional Context
No response