AskSQL API Reference (core v0.10.0)
    Preparing search index...

    Interface ServerRequest

    Minimal framework-agnostic request view.

    interface ServerRequest {
        headers: Readonly<Record<string, string | undefined>>;
        method: string;
        path: string;
        query: Readonly<Record<string, string | undefined>>;
        signal?: AbortSignal;
        json(): Promise<unknown>;
    }
    Index
    headers: Readonly<Record<string, string | undefined>>
    method: string
    path: string
    query: Readonly<Record<string, string | undefined>>
    signal?: AbortSignal

    Aborted when the client goes away; the handler passes it on so the model call and query stop too.