You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: nodes/DynamicNode/DynamicNode.node.ts
+5-7Lines changed: 5 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -29,20 +29,18 @@ export class DynamicNode implements INodeType {
29
29
description: 'Paste in your exported node JSON here',
30
30
},
31
31
{
32
-
displayName: 'Execute individually per item?',
32
+
displayName: 'Execute Individually Per Item?',
33
33
name: 'executeIndividually',
34
34
type: 'boolean',
35
35
default: true,
36
-
description:
37
-
'If enabled, each input item will run in its own sub-workflow. Disable only if your node can handle bulk items safely.',
36
+
description: 'Whether to execute the sub-workflow once per input item. If false, all items are passed in together.',
38
37
},
39
38
{
40
-
displayName: 'Disable waiting for child workflow(s) to finish?',
41
-
name: 'doNotWaitToFinish',
39
+
displayName: 'Disable Waiting for Child Workflow(s) to Finish?',
40
+
name: 'disableWait',
42
41
type: 'boolean',
43
42
default: false,
44
-
description:
45
-
'⚠️ Advanced: If enabled, the parent will not wait for results from the sub-workflow. This may break downstream logic or lose returned data.',
43
+
description: 'Whether to return immediately after starting the sub-workflow. Advanced: if enabled, parent will not wait for results and outputs may be empty.',
0 commit comments