Interface RunWidgetQueryArgs

interface RunWidgetQueryArgs {
    field?: string;
    kind:
        | "count"
        | "range"
        | "histogram"
        | "formula"
        | "categories"
        | "time-series"
        | "top-values";
    limit?: number;
    metric?: string;
    query?: Query<Record<string, unknown>>;
    sourceId: string;
}

Hierarchy (view full)

Properties

field?: string
kind:
    | "count"
    | "range"
    | "histogram"
    | "formula"
    | "categories"
    | "time-series"
    | "top-values"
limit?: number
metric?: string
query?: Query<Record<string, unknown>>
sourceId: string