When I use the following method in TypeOrm
const user: any = await getConnection() .createQueryBuilder() .select("user") .from(User, "user") .where("user.id = :id", { id }) .getOne();
He reported the following error, may I ask how to solve, thank you!