Mongoose pluralizes the lower-cased model name when determining the collection name to use. So with a model name of 'Co'
it's going to be looking in the cos
collection by default.
To override the default and align with your existing co
collection:
var Co = mongoose.model('Co', coSchema, 'co');