1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Merge pull request #2500 from tilleul/patch-3

Support for context stores using JSONata and evaluateNodeProperty()
This commit is contained in:
Nick O'Leary 2020-03-13 13:21:26 +00:00 committed by GitHub
commit b8e610e1b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -558,11 +558,11 @@ function evaluateNodeProperty(value, type, node, msg, callback) {
*/
function prepareJSONataExpression(value,node) {
var expr = jsonata(value);
expr.assign('flowContext',function(val) {
return node.context().flow.get(val);
expr.assign('flowContext',function(val, store) {
return node.context().flow.get(val, store);
});
expr.assign('globalContext',function(val) {
return node.context().global.get(val);
expr.assign('globalContext',function(val, store) {
return node.context().global.get(val, store);
});
expr.assign('env', function(name) {
var val = getSetting(node, name);