Interface AnalyticsSourceSqlDescriptor

interface AnalyticsSourceSqlDescriptor {
    dialect?: string;
    parameters?: Readonly<Record<string,
        | null
        | string
        | number
        | boolean>>;
    text: string;
}

Properties

dialect?: string
parameters?: Readonly<Record<string,
    | null
    | string
    | number
    | boolean>>
text: string

SQL text or a stable server-side query id. Never put secrets here.