Spent hours trying to figure this out - I\'m adding a new Model to my app but it\'s failing with \"TypeError: List.find is not a function\". I have another model, Items, th
You've defined incorrect module.exports.
mongoose.exports = mongoose.model('List', listSchema);
This should be
module.exports = mongoose.model("List", listSchema);