We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85fdd68 commit e02feb4Copy full SHA for e02feb4
1 file changed
src/domain/couple/constant/score-query.helper.ts
@@ -15,6 +15,8 @@ export function coupleStatsSubQuery(ds: DataSource) {
15
.createQueryBuilder()
16
.select([
17
'c.id AS coupleId',
18
+ 'c.name AS name',
19
+ 'c.profileImageUrl AS profileImageUrl',
20
'c.createdAt AS createdAt',
21
'c.cumulativeEcoLovePoints AS cumHeart',
22
])
@@ -59,6 +61,8 @@ export function coupleScoreQB(
59
61
.setParameters(sub.getParameters())
60
62
63
'b.coupleId AS coupleId',
64
+ 'b.name AS name',
65
+ 'b.profileImageUrl AS profileImageUrl',
66
'b.createdAt AS createdAt',
67
'b.cumHeart AS cumulativeEcoLovePoints',
68
'b.ecoCnt AS ecoVerificationCount',
0 commit comments