CompileResultSQLResult: {
    additionalProperties?: {
        [k: string]: any;
    };
    masks?: {
        [k: string]: MaskingRule;
    };
    query?: string;
}

The partially evaluated result of the query as SQL.

Type declaration

  • OptionaladditionalProperties?: {
        [k: string]: any;
    }
    • [k: string]: any
  • Optionalmasks?: {
        [k: string]: MaskingRule;
    }

    Column masking functions, where the key is the column name, and the value describes which masking function to use.

  • Optionalquery?: string

    String representing the SQL equivalent of the conditions under which the query is true.