mirror of https://github.com/tiangolo/fastapi.git
15 lines
349 B
Python
15 lines
349 B
Python
from typing import Union
|
|
|
|
from fastapi import FastAPI, Query
|
|
from typing_extensions import Annotated
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/items/")
|
|
async def read_items(q: Annotated[Union[str, None], Query(min_length=3)] = ...):
|
|
results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
|
|
if q:
|
|
results.update({"q": q})
|
|
return results
|