Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for read_explicit_query (0.14 seconds)

  1. tests/test_required_noneable.py

    from fastapi import Body, FastAPI, Query
    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    
    @app.get("/query")
    def read_query(q: str | None):
        return q
    
    
    @app.get("/explicit-query")
    def read_explicit_query(q: str | None = Query()):
        return q
    
    
    @app.post("/body-embed")
    def send_body_embed(b: str | None = Body(embed=True)):
        return b
    
    
    client = TestClient(app)
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 1.5K bytes
    - Click Count (0)
Back to Top