Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Last active October 17, 2019 03:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luandevpro/49a4ae43a1889fc5357dce02b357ccdf to your computer and use it in GitHub Desktop.
Save luandevpro/49a4ae43a1889fc5357dce02b357ccdf to your computer and use it in GitHub Desktop.
exports = function(payload, response) {
const atlas = context.services.get('mongodb-atlas');
return atlas
.db('apitutorial')
.collection('users')
.findOneAndUpdate(
{ _id: BSON.ObjectId(payload.query.id) },
{
$set: {
email: payload.query.email,
age: payload.query.age,
name: payload.query.name,
password: payload.query.password,
},
}
);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment