I feel stupid right now, but here’s my question.
based on that doc : Introduction | Docs
I fetch some data from gsheet with success.
I want to manipulate data with “function” node
If I am using “set” node with expression, I have my value like :
It seems like you are mixing up two different syntax. One are expressions in parameters. They are always encapsulated in {{ }}
How they work is documented here:
And then there are the Function-Nodes which are pure JavaScript. Their documentation can be found here:
A Function Nodes always expects an array as return value and that has to be an array of items (an item has always a “json” property). The data structure is described here:
So not exactly sure what you want to do but the code you want is probably something like this in case the “Google Sheet” Node is connected directly to the Function-Node: