If you wanna get ordered record - you must use Pydantic model, or manually write mappings.
schema.py
:
from pydantic import BaseModel
class ProductRead(BaseModel):
product_id: int
name: str
price: int
description: str
stars: int
ingredients: str
nutrition: str
image_id: int