인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

yanghw09115601's profile image
yanghw09115601

asked

Slack Clone Coding [Backend with NestJS + TypeORM]

typeorm select 관련 질문드립니다.

Resolved

Written on

·

313

0

request에 프론트에서 넘어온 값이 있을때만 where절에 넣고 싶은데 어떻게 해야하나요?

expressnodejsNestJSTypeORM

Answer 1

2

zerocho님의 프로필 이미지
zerocho
Instructor

if문으로 중간에 조건 거시면 됩니다.

let query = this.repo.createQueryBuilder().where()
if (프론트값) {
query = query.where()
}
query.execute();

yanghw09115601's profile image
yanghw09115601

asked

Ask a question