Package version:

The query compilation object which defines the input, output, and transformation for the query compilation.

interface CompileQuery {
    compatibilityLevel?: string;
    functions?: QueryFunction[];
    inputs?: QueryInput[];
    jobType: string;
    query: string;
}

Properties

compatibilityLevel?: string

The query to compile.

functions?: QueryFunction[]

The functions for the query compilation.

inputs?: QueryInput[]

The inputs for the query compilation.

jobType: string

Describes the type of the job. Valid values are Cloud and 'Edge'.

query: string

The query to compile.

Generated using TypeDoc