A Supabase Edge Function queries and filters Supabase data on each insert or update, then sends matched results as webhook events to EventBridge, which routes notifications to DingTalk or Lark group chats for real-time team alerts.
A Supabase Edge Function queries and filters Supabase data on each insert or update, then sends matched results as webhook events to EventBridge, which routes notifications to DingTalk or Lark group chats for real-time team alerts.
See supabase/supabase-execute-logic.
See supabase/supabase-search-data.
See eb/eb-integrate-events.
Q: How do I get notified in DingTalk when Supabase data changes? A: You can receive DingTalk notifications by routing webhook events from a Supabase Edge Function through EventBridge. The Edge Function queries and filters the data on each insert or update, then sends matched results as webhook events to EventBridge for delivery.
Q: How do I send an alert to Lark when a new database record is created? A: You can deliver Lark alerts by processing new records through a Supabase Edge Function and routing the results via EventBridge. The function executes custom backend logic near the data to filter inserts or updates and forwards matched results as events.
Q: How does an Edge Function webhook connect to EventBridge? A: A Supabase Edge Function sends matched data results as webhook events directly to EventBridge. EventBridge then integrates these events to route notifications to external services like DingTalk or Lark.