@badgifter/auth-helpers-sveltekit
v0.9.8
Published
A collection of framework specific Auth utilities for working with Supabase.
Downloads
9
Maintainers
Readme
copy of @supabase but with Multi-Schema
easy to use, just install, then create the client like you normally would.
- you can specify any default schema like normal through options.db.schema
- with a single client, you can access rest data from other schemas like below
supabaseClient.from( "TableName", "SchemaNameHere") or supabaseClient.rpc( "TableName", {arguments here}, "SchemaNameHere")
or just use the default schema like normal
supabaseClient.from( "TableName" ) or supabaseClient.rpc( "TableName", {arguments here} )