🎯 GET Data from Supabase

Hi,

For now we don’t have implemented storage features yet. But with javascript you have access to the supabase instance and can perform any operation allowed by the SDK (v1.0).

wwLib.wwPlugins.supabase.instance

From the documentation

const { data, error } = await wwLib.wwPlugins.supabase.instance
  .storage
  .from('avatars')
  .download('folder/avatar1.png')
5 Likes