Sorry for asking - again.
But I am stuck.
In a function
node.
This is the code that works:
var x = flow.get("$parent.name");
var y = global.get("something");
msg.payload = x + " " + y;
My question is why the inconsistency with the command to access the higher level data?
One is flow.get("$parent.name")
and the other is global.get("something")
Could someone show me the proper way to access the flow/global variables?
Oh, and how to access them using a change
node? They aren't exactly conducive to those commands.