Skip to content

Instantly share code, notes, and snippets.

@tnovau
Created November 19, 2019 14:36
Show Gist options
  • Save tnovau/95e38abb30d1c4b8ee765908cee315c6 to your computer and use it in GitHub Desktop.
Save tnovau/95e38abb30d1c4b8ee765908cee315c6 to your computer and use it in GitHub Desktop.
Create One document - Mongoose snippet
const kitty = { name: 'Zildjian' };
/**
* @param {Object} doc
*/
const createOne = async doc => {
const savedDocument = await Cat.create(kitty);
return { ...kitty, id: savedDocument.id };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment