Mongoose - схема импорта для вложенного документа - PullRequest
0 голосов
/ 30 сентября 2019

На моем сервере Nodejs я использую mongoose, и я создал схемы для постов и комментариев в одном файле. Есть ли способ экспортировать схему для вложенного документа (комментариев) в отдельный файл и импортировать в основной файл схемы?

const mongoose = require('mongoose');

const commentSchema = mongoose.Schema({
    body: { type: String }
});

const postSchema = mongoose.Schema({
    title: {
        type: String,
        required: true
    },
    comments: {
        type: [commentSchema]
    }
});

module.exports = mongoose.model('questions', postSchema);
...