const user = await Users.findOneById<Pick<IUser, 'language' | 'emails'>>(uid, {
        projection: { language: 1, emails: 1 },
    });