Amatewasu
03/13/2022, 5:43 PMprofiles
table with data such as the firstname & lastname. But then I would like to retrieve a user email from its profiles.id. Is it possible. How would you do? Thanks a lot!Needle
03/13/2022, 5:43 PM/title
command!
We have solved your problem?
Click the button below to archive it.silentworks
03/14/2022, 11:52 AMauth
schema by setting the schema when instantiating the supabase library
js
import { createClient } from '@supabase/supabase-js';
const supabase = createClient(supabaseUrl, supabaseServerKey, { schema: 'auth' });
Needle
03/14/2022, 11:52 AMAmatewasu
03/14/2022, 1:27 PMsilentworks
03/14/2022, 1:27 PMAmatewasu
03/14/2022, 1:48 PM