MCPcopy Index your code
hub / github.com/fastapi/fastapi / read_items

Function read_items

docs_src/query_params_str_validations/tutorial008_an_py310.py:9–22  ·  view source on GitHub ↗
(
    q: Annotated[
        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,
)

Source from the content-addressed store, hash-verified

7
8@app.get("/items/")
9async def read_items(
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"}]}
20 if q:
21 results.update({"q": q})
22 return results

Callers

nothing calls this directly

Calls 1

QueryClass · 0.90

Tested by

no test coverage detected