Functions
A function is optional logic that runs after a filter. It receives the filter result and prepares the feed output for the action, integration, or system that comes next.When to Use a Function
Use a function when you need to:- Keep the filter focused on event matching and first-pass shaping.
- Add a separate post-filter step for heavier business logic.
- Call an external API or managed database after an event has already matched.
- Prepare action-specific context without hiding the trigger condition.
- Isolate integration-specific work from the core feed logic.