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