Coverage for docs_src / query_params_str_validations / tutorial010_an_py310.py: 100%

9 statements  

« prev     ^ index     » next       coverage.py v7.13.3, created at 2026-04-06 01:24 +0000

1from typing import Annotated 1abcdefgh

2 

3from fastapi import FastAPI, Query 1abcdefgh

4 

5app = FastAPI() 1abcdefgh

6 

7 

8@app.get("/items/") 1abcdefgh

9async def read_items( 1abcdefgh

10 q: Annotated[ 

11 str | None, 

12 Query( 

13 alias="item-query", 

14 title="Query string", 

15 description="Query string for the items to search in the database that have a good match", 

16 min_length=3, 

17 max_length=50, 

18 pattern="^fixedquery$", 

19 deprecated=True, 

20 ), 

21 ] = None, 

22): 

23 results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} 1imnjokpqlrs

24 if q: 1imnjokpqlrs

25 results.update({"q": q}) 1ijkl

26 return results 1imnjokpqlrs