interface CodeNodeParameters {
jsCode?: string;
language?: "javaScript" | "python" | "pythonNative";
mode?: "runOnceForAllItems" | "runOnceForEachItem";
pythonCode?: string;
}Properties§
Source§readonly python Code?: string
readonly python Code?: string
Python code to execute.
Tip: You can use built-in methods and variables like _today for dates and _jmespath for querying JSON structures. Learn more.
Type options: {"editor":"codeNodeEditor","editorLanguage":"python"}
JavaScript code to execute.
Tip: You can use luxon vars like
$todayfor dates and$jmespathfor querying JSON structures. Learn more. Type options: {"editor":"codeNodeEditor","editorLanguage":"javaScript"}