Trigger node question

I see in the trigger node properties flow. and global. what are they for ? I searched but cannot seam to find any example.
Can I use something like flow. get('foo') in that field, (I tried that but it syntax appears to be wrong)

They are to access context storage.

you would use 'foo' in the field to access global.set('foo','a value')
global>foo would return 'a value'.

global.set('foo', {"bar":'a value'})
global>foo.bar would return 'a value'.

Yes it works, perfect, thank you

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.