Async User Call in `createContext` (context.ts) or in `isAuthed` (in trpc.ts)

Hi all! Should I be getting the user in all requests via createContext in the following async call
const { user } = await supabaseAdmin.auth.api.getUserByCookie(opts.req)
const { user } = await supabaseAdmin.auth.api.getUserByCookie(opts.req)
Or would it be more sensible for this to only be called in certain procedures such as middleware like isAuthed? In theory, I don't want public API calls being slower because of the delay it takes to fetch the user. (we use NextJS if relevant)
S
santi407d ago
How does this look?
N
Nick406d ago
Whichever works for you They’re both fine