Member Junction
    Preparing search index...

    Result of processing a query template

    interface QueryProcessingResult {
        appliedParameters: Record<string, unknown>;
        error?: string;
        processedSQL: string;
        success: boolean;
    }
    Index

    Properties

    appliedParameters: Record<string, unknown>

    The final parameters that were applied, including defaults

    error?: string

    Error message if processing failed

    processedSQL: string

    The processed SQL query with parameters substituted

    success: boolean

    Whether template processing was successful