Template Node
Type: Function
Compatible with: Flow Graph, Connector Graph
Description:
The Template Node allows you to dynamically create or modify properties within a message payload using a template string. This template can incorporate variables from the incoming message, enabling you to generate custom outputs based on the message content.
Settings Parameters:
- Property: The dot-notation path to the property you want to create or modify in the
msg
object (e.g.,msg.payload.formatted_output
). - Template: A string that defines the structure of the output property. You can use double curly braces
{{ }}
to embed variables from themsg
object. For example,{{payload}}
will insert the value of themsg.payload
property.
Input:
msg
: The message object whose properties will be used in the template.
Output:
msg
: The modified message object with the new or updated property based on the template.