context: ({ req }) => {
    const currentReq = req as RequestWithAuth
    const user = currentReq.user || null
    return { user }
  }