Interface SQLQueryContext

interface SQLQueryContext {
    columns: SQLQueryProperty[];
    dialect?: string;
    groupbys?: string[];
    rows: SQLQueryProperty[];
    select?: string[];
    unbookedData?: string[];
    where?: string[];
    zeroSuppression?: boolean;
}

Properties

columns: SQLQueryProperty[]
dialect?: string
groupbys?: string[]
select?: string[]
unbookedData?: string[]
where?: string[]
zeroSuppression?: boolean

Generated using TypeDoc