Change the value of one field in a list

Hello,

I want to change “Hop Exchange” value for “Hop Protocol”. I’m trying with Set node but it changes for the entire protocol items.

Thanks!

Just add a Function Item node with the following code:

item.Protocol = 'Hop Protocol';
return item;
Example workflow
1 Like

Thanks! It worked!