Puoi estendere la classe del modello e aggiungere proprietà con la funzione getter in modo che ottenga valori da altre proprietà persistenti.
Ad esempio:
module.exports = function(Person) {
Object.defineProperty(Person.prototype,
"fullName",
{
get : function() { return this.firstName + ' ' + this.lastName; }
});
}
http://docs.strongloop.com/display/LB/Extend+your +API