Myslím, že ano, chtěli jste instanční metody? To jsi myslel s metodami Schema? Pokud ano, můžete udělat něco jako:
var mySchema = new Schema({
name: {
type: String
},
createdAt: {
type: Date,
default: Date.now
}
});
mySchema.methods.changedName = function() {
return this.name + 'TROLOLO';
};
Something = mongoose.model('Something', mySchema);
S tím můžete:
Something.findOne({ _id: id }).exec(function (error, something) {
something.changedName();
});