Skip to content

Instantly share code, notes, and snippets.

@codebubb
Last active September 5, 2019 16:31
Show Gist options
  • Select an option

  • Save codebubb/fc929869fc457f5ebe453f5aab839218 to your computer and use it in GitHub Desktop.

Select an option

Save codebubb/fc929869fc457f5ebe453f5aab839218 to your computer and use it in GitHub Desktop.
Changing field names in mongodb
// [{_id:"someid", name:"someUserName", age:21, countPosts: 15}];
db.findOne({ _id })
.then(results => ({ id: results._id, username: results.name }))
.then(results => res.json(results));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment