Skip to content

Instantly share code, notes, and snippets.

@luandevpro
Created October 16, 2019 12:29
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/a6b226f47ae43a0287a0ef580006a893 to your computer and use it in GitHub Desktop.
Save luandevpro/a6b226f47ae43a0287a0ef580006a893 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')
.insertOne({
name: payload.query.name,
email: payload.query.email,
password: payload.query.password,
age: payload.query.age,
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment