Node Input

In Scripting contexts you can get the node input by calling the instance id of the previous node from which you want to get your data we have 3 types of data inputs:

DataFramechevron-right

Example Nodes: VisualQuery, Query, DataPrep, QueryInMemory...

Filechevron-right

Example Nodes: FileUploader, ExcelBuilder, FileRenamer, File Listener...

DataObjectchevron-right

Example Nodes: ScriptSourceObject, JSONObject...

Example Use:

// Example get DataFrame from VisualQuery_1
VisualQuery_1.row(0).name

// Example get File from FileUploader_1
FileUploader_1.asFile()

// Example get DataObject from ScriptSourceObject_1
ScriptSourceObject_1.asData();