Interface SnowflakeNodeParameters

Source
interface SnowflakeNodeParameters {
    columns?: string;
    operation?: "update" | "executeQuery" | "insert";
    query?: string;
    table?: string;
    updateKey?: string;
}

Properties§

Source§

readonly columns?: string

Comma-separated list of the properties which should used as columns for the new rows

Source§

readonly operation?: "update" | "executeQuery" | "insert"

Default: "insert"

Source§

readonly query?: string

The SQL query to execute Type options: {"editor":"sqlEditor"}

Source§

readonly table?: string

Name of the table in which to insert data to

Source§

readonly updateKey?: string

Name of the property which decides which rows in the database should be updated. Normally that would be "id". Default: "id"