| 12345678910111213 | const mongoose = require('mongoose')const { Schema, Types } = mongooseconst chunk = require('./chunk.model')module.exports = mongoose.model(  'dokumen',  new Schema({    chunk: { type: Types.ObjectId, ref: chunk },    judul: String,    path: String,  }),  'dokumen')
 |