Supabase: How to fetch a user by email?
Self explanatory from the title.
We have
const { data: { user }, error: authError } = await supabase.auth.admin.getUserById('5d16dc00-4d1d-4026-a60a-ccf5b549da15');
Is there an equivalent for fetching the user through their email address?
Thank you.
We have
const { data: { user }, error: authError } = await supabase.auth.admin.getUserById('5d16dc00-4d1d-4026-a60a-ccf5b549da15');
Is there an equivalent for fetching the user through their email address?
Thank you.