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:
DataFrameExample Nodes: VisualQuery, Query, DataPrep, QueryInMemory...
FileExample Nodes: FileUploader, ExcelBuilder, FileRenamer, File Listener...
DataObjectExample 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();
Last updated
Was this helpful?