Coverage for docs_src / query_params_str_validations / tutorial008_py310.py: 100%
8 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 fastapi import FastAPI, Query 1abcdef
3app = FastAPI() 1abcdef
6@app.get("/items/") 1abcdef
7async def read_items( 1abcdef
8 q: str | None = Query(
9 default=None,
10 title="Query string",
11 description="Query string for the items to search in the database that have a good match",
12 min_length=3,
13 ),
14):
15 results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} 1kglhminj
16 if q: 1kglhminj
17 results.update({"q": q}) 1ghij
18 return results 1kglhminj