Script Structure
1. Script Structure
2. Notes
The
handleNode
function is the entry point to the script.context
is an object and has methods to look-up input variables.The return value is an object containing output data.
levelops
is an object used to invoke LevelOps services.
3. Context Methods
context.getParam(name, [defaultValue=null])
Access the node input parameters.
If not found, returns null.
Not typed.
context.getData(name, [defaultValue=null])
Access intermediate data of the node. (useful for long running tasks where the node will wake up multiple times)
If not found, returns null.
4. Output Schema
Last updated