Interface RetrieverWorkflowNodeParameters

Source
interface RetrieverWorkflowNodeParameters {
    fields?: {
        values: {
            arrayValue?: string;
            booleanValue?: "true" | "false";
            name?: string;
            numberValue?: string;
            objectValue?: string;
            stringValue?: string;
            type?:
                | "stringValue"
                | "numberValue"
                | "booleanValue"
                | "arrayValue"
                | "objectValue";
        }[];
    };
    source?: "database"
    | "parameter";
    workflowId?: string;
    workflowJson?: string;
}

Properties§

Source§

readonly fields?: {
    values: {
        arrayValue?: string;
        booleanValue?: "true" | "false";
        name?: string;
        numberValue?: string;
        objectValue?: string;
        stringValue?: string;
        type?:
            | "stringValue"
            | "numberValue"
            | "booleanValue"
            | "arrayValue"
            | "objectValue";
    }[];
}

Set the values which should be made available in the workflow Default: {} Type options: {"multipleValues":true,"sortable":true}

Source§

readonly source?: "database" | "parameter"

Where to get the workflow to execute from Default: "database"

Source§

readonly workflowId?: string

The workflow to execute

Source§

readonly workflowJson?: string

The workflow JSON code to execute Default: "\n\n\n" Type options: {"rows":10}