The TRANSFORM node transforms data using expressions and mappings, allowing you to reshape data between flow steps.Documentation Index
Fetch the complete documentation index at: https://hypha-docs.plinqx.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
TRANSFORM nodes enable:- Data Transformation: Reshape data structures
- Field Mapping: Map input fields to output fields
- Expression Evaluation: Use expressions for calculations
- Data Preparation: Prepare data for subsequent nodes
How It Works
Configuration
Field Mappings
Map output fields to input expressions:Expression Support
Expressions support:- Variable Access:
{{node.field}} - Nested Access:
{{node.response.data.id}} - Functions: String, number, date functions
- Calculations: Mathematical operations
- Conditionals: Ternary operators
Example Transformations
String Concatenation:Use Cases
- Data Normalization: Normalize data from different sources
- Field Renaming: Rename fields for consistency
- Data Enrichment: Add computed fields
- Format Conversion: Convert between data formats
Best Practices
Clear Mappings
Use descriptive output field names
Validate Expressions
Test expressions before using in production
Handle Nulls
Account for null/undefined values
Document Logic
Document complex transformations
Next Steps
JSON Builder Node
Build complex JSON structures
Validate Node
Validate transformed data