참고: https://orkhan.gitbook.io/typeorm/docs/find-options
//AND 연산
userRepository.find({ where: { firstName: "Timber", lastName: "Saw" } });
//OR 연산
userRepository.find({
where: [
{ firstName: "Timber", lastName: "Saw" },
{ firstName: "Stan", lastName: "Lee" },
],
});