Interface Command

interface Command {
    command: CommandType;
    extraContext?: any;
    queryName: string;
    rows: any[];
    schemaName: string;
}

Properties

command: CommandType

Name of the command to be performed. Must be one of "insert", "update", or "delete".

extraContext?: any

Experimental: Optional extra context object passed into the transformation/validation script environment.

queryName: string

Name of a query table associated with the chosen schema. See also: How To Find schemaName, queryName & viewName.

rows: any[]

An array of data for each row to be changed. See insertRows, updateRows, or deleteRows for requirements of what data must be included for each row.

schemaName: string

Name of a schema defined within the current container. See also: How To Find schemaName, queryName & viewName.

Generated using TypeDoc