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

Function hidden_query

tests/test_param_include_in_schema.py:29–32  ·  view source on GitHub ↗
(
    hidden_query: str | None = Query(default=None, include_in_schema=False),
)

Source from the content-addressed store, hash-verified

27
28@app.get("/hidden_query")
29async def hidden_query(
30 hidden_query: str | None = Query(default=None, include_in_schema=False),
31):
32 return {"hidden_query": hidden_query}
33
34
35@pytest.mark.parametrize(

Callers

nothing calls this directly

Calls 1

QueryClass · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…