Я хочу реализовать отношение родитель / потомок (Self Referencing) для комментариев с их ответами. Вот код для схемы:
const mongoose = require("mongoose");
const Schema = mongoose.Schema;
const BlogCommentSchema = new Schema({
body: String,
dateTime: { type: Date, default: Date.now },
replies: [this]
});
const BlogComment = mongoose.model("blogComments", BlogCommentSchema);
module.exports = BlogComment;
Какой самый простой способ получить количество комментариев или ответы на комментарии?
Любая помощь будет оценена.
Уточнение: Вот пример сохраненного документа на основе схемы:
{
"replies": [
{
"replies": [
{
"replies": [],
"_id": "5e558aa01f804205102b4a78",
"body": "Comment 1.1.1",
"dateTime": "2020-02-25T20:59:12.056Z"
}
],
"_id": "5e558aa01f804205102b4a79",
"body": "Comment 1.1",
"dateTime": "2020-02-25T20:59:12.057Z"
},
{
"replies": [
{
"replies": [
{
"replies": [
{
"replies": [
{
"replies": [],
"_id": "5e558aa01f804205102b4a7a",
"body": "Comment 1.2.1.1.1",
"dateTime": "2020-02-25T20:59:12.057Z"
}
],
"_id": "5e558aa01f804205102b4a7b",
"body": "Comment 1.2.1.1.1",
"dateTime": "2020-02-25T20:59:12.057Z"
}
],
"_id": "5e558aa01f804205102b4a7c",
"body": "Comment 1.2.1.1",
"dateTime": "2020-02-25T20:59:12.057Z"
}
],
"_id": "5e558aa01f804205102b4a7d",
"body": "Comment 1.2.1",
"dateTime": "2020-02-25T20:59:12.058Z"
}
],
"_id": "5e558aa01f804205102b4a7e",
"body": "Comment 1.2",
"dateTime": "2020-02-25T20:59:12.058Z"
}
],
"_id": "5e558aa01f804205102b4a7f",
"body": "Comment 1",
"dateTime": "2020-02-25T20:59:12.058Z",
"__v": 0
}
Мне нужно получить эти цифры (общее количество ответов 7, число Comment 1.1
равно 1, ...):
Comment 1 (count is 7)
- Comment 1.1 (count 1)
- Comment 1.1.1
- Comment 1.2 (count 4)
- Comment 1.2.1
- Comment 1.2.1.1
- Comment 1.2.1.1.1
- Comment 1.2.1.1.1.1