n8n flows
Map Workflows ↔ Supabase Tables
Introspection utility that scans active workflows and builds a mapping of which Supabase tables each scenario touches.
An auditing utility that scans all active workflows and builds a map of which Supabase tables each scenario touches (via which node and operation), documenting workflow-to-database dependencies.
At a glance
- Status: Inactive (manual only). Work-in-progress.
- Trigger: Manual ("When clicking 'Test workflow'").
- Runs on: All active workflows in the instance.
- Talks to: n8n internal API only (no external writes).
How it works
- The
n8nnode fetches all active workflows. Prepare Scenarios Arrayfilters to workflows containing Supabase nodes and emitsscenario_nameplus sortedtableId: nodeName | operationconnection strings.- A counter and loop scaffold iterates scenarios and their nodes to build the per-node table mapping.
Notes
- Work-in-progress dev utility. Several nodes have dangling connections and it produces no persisted output. It was never activated.
Related
- Scenario Backups: another instance-wide introspection utility.
- Get Total Execution Usage: a sibling reporting helper.
- Error Handler: the shared error workflow.
- See also Data flows.