fix: poplaute category field in comment list

This commit is contained in:
Innei
2021-12-10 12:00:39 +08:00
parent 1e3949c413
commit 4c16b26657

View File

@@ -182,7 +182,12 @@ export class CommentService {
limit: size,
populate: [
{ path: 'parent', select: '-children' },
{ path: 'ref', select: 'title _id slug nid' },
{
path: 'ref',
select: 'title _id slug nid categoryId',
populate: [{ path: 'category', model: 'Category' }],
},
],
sort: { created: -1 },
},