Coverage for docs_src/query_params_str_validations/tutorial010.py: 100%
9 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-05-05 00:03 +0000
1from typing import Union 1abcdef
3from fastapi import FastAPI, Query 1abcdef
5app = FastAPI() 1abcdef
8@app.get("/items/") 1abcdef
9async def read_items( 1abcdef
10 q: Union[str, None] = Query(
11 default=None,
12 alias="item-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 max_length=50,
17 pattern="^fixedquery$",
18 deprecated=True,
19 ),
20):
21 results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} 1gmnhopiqrjstkuvlwx
22 if q: 1gmnhopiqrjstkuvlwx
23 results.update({"q": q}) 1ghijkl
24 return results 1gmnhopiqrjstkuvlwx