Skip to content

Compute Node

  • Function operations – Only function operations are supported
  • 1-to-many – Functions can return arrays to expand or filter rows
  • Stateful context – Context persists across entries within a function operation
  • Lookup data – Access lookup payloads for enrichment
{
"custom": {
"execution": {
"operations": [
{
"type": "transformation",
"action": "function",
"params": {
"function": "({ row }) => row.quantity > 0 ? [row] : []"
}
}
]
}
}
}
  • operation – Transformations and validations
  • filter – Remove invalid rows
  • function – Function transformation