Email/password auth with sessions the SDK manages for you.
await backend.auth.signUp({ email, password, name }); // signs the user in immediatelyawait backend.auth.signInWithPassword({ email, password });const { data } = await backend.auth.getCurrentUser();await backend.auth.signOut();
After sign-in the SDK attaches the user’s session to every database, storage,
function, and realtime call automatically - RLS-scoped tables just work.