Coverage for docs_src / query_params_str_validations / tutorial008_an_py310.py: 100%
9 statements
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
« prev ^ index » next coverage.py v7.13.3, created at 2026-04-06 01:24 +0000
1from typing import Annotated 1abcdefg
3from fastapi import FastAPI, Query 1abcdefg
5app = FastAPI() 1abcdefg
8@app.get("/items/") 1abcdefg
9async def read_items( 1abcdefg
10 q: Annotated[
11 str | None,
12 Query(
13 title="Query string",
14 description="Query string for the items to search in the database that have a good match",
15 min_length=3,
16 ),
17 ] = None,
18):
19 results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} 1lhminjok
20 if q: 1lhminjok
21 results.update({"q": q}) 1hijk
22 return results 1lhminjok