Database / Supabase basics Interview Questions
What is the purpose of Supabase Edge Functions?
Edge Functions let you run custom TypeScript/JavaScript server-side code that isn't a natural fit for a database query — things like calling a third-party payment API, sending a webhook, or performing logic that needs a secret key the client should never see.
They're deployed close to users on a distributed edge network for low latency, and are typically invoked via HTTP from the client or triggered by database webhooks.
More Related questions...