23. 리뷰 평점을 계산하고 싶어요.
"collectionOptions": {
"joinSummaries": [
{
"id": "reviewInfo", // id 정의
"items": [
{
"id": "avg",
"targetItem": "rating", // 평균을 구할 항목
"type": "#avg" // 평균을 구하는 메서드
},
{
"id": "size",
"type": "#size" // 총 개수를 구하는 메서드
}
],
"joinMeta": "pkg_categoryMap_review", // 참조할 메타
"joinOptions": {
"as": {
"joinMetaName": "restaurantReview", // 참조할 메타 정의
"metaName": "restaurant" // 현재 메타 정의
},
"filters": [
{
"#eq": {
"#left": "restaurant._id", // 현재 메타의 _id
"#right": "restaurantReview.storeJoin._id" // 참조 메타의 storeJoin._id
}
}
]
}
}
]
}
Last updated