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:
- DataFrame - Example Nodes: VisualQuery, Query, DataPrep, QueryInMemory...
- File - Example Nodes: FileUploader, ExcelBuilder, FileRenamer, File Listener...
- DataObject - 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();