Get user from auth.api
For my administrator page, I want to get a single user from the auth table (regardless if logged in or not). I am currently using
In the docs, I've found only
await supabase.auth.api.listUsers() to get all users but I want to query only one specific user with their uid or email address.In the docs, I've found only
user() and getUser() which both seem to only get the user data of a currently logged in user.