I'm trying to access a field in the users table to apply it to a conditional, but I can't find it in the authenticated user field. Do I need to do a supabase query for that specific table (user table) previously? In Firebase it can be accessed directly because I only have one table of users; However, in supabase I understand that I would have to call through a query to the user table and filter to the table with the ID of the authenticated user, is this correct? I would like to avoid falling into bad practices
Thanks