Hi, i am unable to use DB shemas other then public when utilizing the nuxt/supabase module.
I tried to put the schema inline into await client.from('<schema>.<table>') but that didnt work.
I also tried to use the nuxt.config
supabase:{
clientOptions: {
db: {
schema: '<schema>',
}
}
}
but its still using the public schema.
Does anyone know how to handle this?