Annotated와 Queryfrom typing import Annotatedfrom fastapi import FastAPI, Queryapp = FastAPI()@app.get("/items/")async def read_items(q: Annotated[str | None, Query(max_length=50)] = None): results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} if q: results.update({"q": q}) return resultsAnnotated는 typing에서 Query는 fastapi에서 Import 가능 (Python 3.9 이상 기준)Annotated의 목적은 파라미터 타..