Skip to content

DataQueryKind🔗

Definition🔗

export interface DataQueryKind {
    kind: "DataQuery";
    group: string;
    version: string;
    // New type for datasource reference
    // Not creating a new type until we figure out how to handle DS refs for group by, adhoc, and every place that uses DataSourceRef in TS.
    datasource?: {
        name?: string;
    };
    spec: any;
}

See also🔗