diff --git a/nodes/core/logic/17-split.html b/nodes/core/logic/17-split.html index 49b0f4e2c..232063c15 100644 --- a/nodes/core/logic/17-split.html +++ b/nodes/core/logic/17-split.html @@ -88,7 +88,8 @@
@@ -128,27 +129,30 @@

A function that joins the a sequence of messages into a single message.

When paired with the split node, it will automatically join the messages to reverse the split that was performed.

-

It can be used without the split node by configuring the required behaviour.

-

The type of the resulting message property can be a string, array or object. All of the other message - properties are taken from the last message received before the message is sent.

+

The node can join either a specific property of each received message or, + if the output type is not string, the entire message.

+

The type of the resulting message property can be:

+ + The other properties of the output message are taken from the last message received before the result is sent.

A count can be set for how many messages should be received before generating the output message

A timeout can be set to trigger sending the new message using whatever has been received so far.

-

If the node is set to construct a string, a join character can be set.

-

If the node is set to construct an object, the key used to store each received property can be taken from - an identified message property.

-

The automatic behaviour relies on the received messages to have msg.parts set. - The object has the following properties:

- - - - +

If a message is received with the msg.complete property set, the output message is sent.

+

The automatic behaviour relies on the received messages to have msg.parts set. The split node generates + this property, but can be manually created. It has the following properties:

+