We\'ve been using NodeJS and mongo (via mongoose) to do a very simple save(). We have a model called \"highlights\" which contains an array of ObjectId s that reference \"re
To nest the model you could write the Schema like this
const ResponseSchema = require('../where your schema file is') var highlightSchema = Schema({ [...] , responses: [ResponseSchema] [...] });