Interface DataTableNodeParameters

Source
interface DataTableNodeParameters {
    dataTableId?: { mode: "id" | "list"; value: string };
    filters?: {
        conditions: {
            condition?: string;
            keyName?: string;
            keyValue?: string;
        }[];
    };
    matchType?: "anyCondition"
    | "allConditions";
    operation?:
        | "get"
        | "update"
        | "upsert"
        | "insert"
        | "deleteRows";
    options?: { dryRun?: boolean };
    resource?: "row";
}

Properties§

Source§

readonly dataTableId?: { mode: "id" | "list"; value: string }

Default: {"mode":"list","value":""}

Source§

readonly filters?: {
    conditions: {
        condition?: string;
        keyName?: string;
        keyValue?: string;
    }[];
}

Filter to decide which rows get Default: {} Type options: {"multipleValues":true,"minRequiredFields":0}

Source§

readonly matchType?: "anyCondition" | "allConditions"

Default: "anyCondition"

Source§

readonly operation?: "get" | "update" | "upsert" | "insert" | "deleteRows"

Default: "insert"

Source§

readonly options?: { dryRun?: boolean }

Default: {}

Source§

readonly resource?: "row"

Default: "row"