Understanding Builder Canvas Nodes
Detailed specifications for Trigger, Custom JavaScript code blocks, Database Tables, and Webhook nodes.
Core Builder Nodes
1. Trigger Node
Matches keyword inputs using exact matches, regex, or semantic vector clusters.
2. JavaScript Code Sandbox
Executes custom code blocks in an isolated container. You can use this for calculations:
const price = parseFloat(variables.total);
const discount = price * 0.10;
return {
final_price: price - discount,
discount_amount: discount
};
3. Native Data Tables CRUD
Performs database operations (Insert, Query, Update) on relational sheets directly hosted inside the dashboard.
4. HTTP Request (API)
Sends POST/GET requests to your external server and maps JSON response keys to local flow variables.