Demultiplex
The Demultiplex node takes in arrays and sends each element of the array back out as separate messages.
For Example:
You send
msg.payload = ['item1', 'item2']
Demux outputs
msg.payload = 'item1'
then
msg.payload = 'item2'
Sample Flows
https://app.octoblu.com/bluprints/import/da289539-2e20-4456-b07e-4a3199f1ca76
Updated less than a minute ago