Interface SimulateNodeParameters

Source
interface SimulateNodeParameters {
    executionDuration?: number;
    icon?: string;
    jsonOutput?: string;
    numberOfItems?: number;
    output?: "all" | "custom" | "specify";
    subtitle?: string;
}

Properties§

Source§

readonly executionDuration?: number

Execution duration in milliseconds Default: 150 Type options: {"minValue":0}

Source§

readonly icon?: string

Select a type of node to show corresponding icon Default: "n8n-nodes-base.noOp" Type options: {"loadOptionsMethod":"getNodeTypes"}

Source§

readonly jsonOutput?: string

Default: "[\n {\n "my_field_1": "value",\n "my_field_2": 1\n }\n]" Type options: {"rows":5}

Source§

readonly numberOfItems?: number

Number input of items to return, if greater then input length all items will be returned Default: 1 Type options: {"minValue":1}

Source§

readonly output?: "all" | "custom" | "specify"

Default: "all"

Source§

readonly subtitle?: string