Пн goose - как запросить самореферентные отношения? - PullRequest
1 голос
/ 25 февраля 2020

Я хочу реализовать отношение родитель / потомок (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

1 Ответ

1 голос
/ 26 февраля 2020

Мне наконец-то удалось получить результат, добавив виртуальный тип в мою схему и используя рекурсивный метод, чтобы получить общее число replies:

const getRepliesCount = (comment, count = 0) => {
  if (comment.replies.length === 0) {
    return 1;
  }
  for (const reply of comment.replies) {
    count += getRepliesCount(reply, count);
  }
  return count;
};


BlogCommentSchema.virtual("total").get(function() {
  return getRepliesCount(this) + 1;
});

Хотя я надеялся, что может быть встроенный или правильный способ сделать это, используя MongoDB / Mon goose.

...