(foo: Annotated[str, Query()] = "foo")
| 10 | |
| 11 | @app.get("/default") |
| 12 | async def default(foo: Annotated[str, Query()] = "foo"): |
| 13 | return {"foo": foo} |
| 14 | |
| 15 | |
| 16 | @app.get("/required") |
nothing calls this directly
no test coverage detected
searching dependent graphs…