Skip to content

supabase/wrappers

PostgreSQL version License Tests


Documentation: https://supabase.github.io/wrappers

Source Code: https://github.com/supabase/wrappers


Overview

supabase/wrappers is a PostgreSQL extension that provides integrations with external sources so you can interact with third-party data using SQL.

For example, the Stripe wrapper allows you to query and join against your Stripe customer data straight from PostgreSQL:

1
2
3
4
5
select
  customer_id
  currency
from
   stripe.customers;
returns
1
2
3
4
    customer_id     | currency 
--------------------+-----------
 cus_MJiBtCqOF1Bb3F | usd      
(1 row)

Currently supabase/wrappers supports:

Integration Select Insert Update Delete Truncate
Airtable ✅ ❌ ❌ ❌ ❌
BigQuery ✅ ✅ ✅ ✅ ❌
ClickHouse ✅ ✅ ✅ ✅ ❌
Firebase ✅ ❌ ❌ ❌ ❌
Logflare ✅ ❌ ❌ ❌ ❌
S3 ✅ ❌ ❌ ❌ ❌
Stripe ✅ ✅ ✅ ✅ ❌