Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- MongoDB
- 게임
- flask
- 정렬
- nestjs
- Express
- cookie
- OCR
- 자료구조
- Bull
- TypeScript
- react
- Dinosaur
- JavaScript
- AWS
- Nest.js
- game
- jest
- dfs
- typeORM
- mongoose
- Queue
- Python
- GIT
- Sequelize
- 공룡게임
- nodejs
- class
- MySQL
Archives
- Today
- Total
포시코딩
[TypeORM] update 후 결과 리턴받기 메모용 본문
728x90
const updatedUser = await this.orm.createQueryBuilder()
.update(User)
.set(request.body)
.where({id})
.returning("*")
.execute()
.then(({raw})=>raw[0]);
728x90
'Node.js' 카테고리의 다른 글
[GraphQL] Utility type in entity (0) | 2023.12.21 |
---|---|
[TypeORM] save, insert, update, upsert 동작 원리 (0) | 2023.12.21 |
[TypeORM] BeforeInsert() - Encrypting Passwords in Entity (0) | 2023.12.21 |
[NestJS] GraphQL 입문할 때 참고용 (1) | 2023.12.07 |
[NestJS] TypeORM take, skip 버그 (4) | 2023.10.30 |