// Это моя схема, необходимая для заполнения для playlist_id
const sectionSchema = new mongoose.Schema({
user: {
type: mongoose.Schema.Types.ObjectId,
ref: 'User'
},
playlist_section: [ {
playlist_id:[{
type:mongoose.Schema.Types.ObjectId,
ref:'Playlist'
}],
section_name: String
}],
created_at: Date,
updated_at: Date
})