The Merger Transformer allows the combination of the output, or partial output, from a data transformer with the existing entity data. Some transformers replace the entire entity data, such as the HTTP Transformer. The Merger Transformer enables the merging of the HTTP Transformer’s output into the entity data without losing the existing entity data.Documentation Index
Fetch the complete documentation index at: https://docs.alumio.com/llms.txt
Use this file to discover all available pages before exploring further.
Fields
Data Transformer
A required field. The data transformer to execute.Template
A required field. This data object will be merged into the existing entity data. The data returned by the configured data transformer can be selected using a placeholder query. To keep all output of the data transformer, use the placeholder “&{@}”.Sample data
| Field | Value |
|---|---|
| Input data | {} |
| Data Transformer | HTTP Transformer |
| Template | { “response”: ”&{@}“} |
| Result | { “response”: “<The output of the HTTP request>”} |