chi
03/29/2024, 12:00 AMpostgrest.from(SCHEMA_NAME, TABLE_A)
.select()
.decodeList<MyModel>()
I get the following error;
io.github.jan.supabase.exceptions.UnknownRestException: The schema must be one of the following: public, storage, graphql_public
What am I doing wrong here pleaseJan
03/29/2024, 9:28 AMSCHEMA_NAME
is not PUBLIC
, so have you read this page: https://supabase.com/docs/guides/api/using-custom-schemas?chi
03/29/2024, 9:32 AM