mirror of https://github.com/tiangolo/fastapi.git
24 lines
540 B
Python
24 lines
540 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(
|
|
title="Query string",
|
|
description="Query string for the items to search in the database that have a good match",
|
|
min_length=3,
|
|
),
|
|
] = None,
|
|
):
|
|
results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]}
|
|
if q:
|
|
results.update({"q": q})
|
|
return results
|