Skip to content

Instantly share code, notes, and snippets.

@alesanabriav
Created April 15, 2015 17:12
Show Gist options
  • Save alesanabriav/f3ff9038d000c35ee660 to your computer and use it in GitHub Desktop.
Save alesanabriav/f3ff9038d000c35ee660 to your computer and use it in GitHub Desktop.
change _id to id on mongoose model
schemaName.set('toJSON', {
transform: function (doc, ret, options) {
ret.id = ret._id;
delete ret._id;
delete ret.__v;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment