Skip to content

Instantly share code, notes, and snippets.

@yvesbou
Created February 18, 2022 09:47
Show Gist options
  • Save yvesbou/7f9cc1514eff4e52ebbd0ee27ce283bf to your computer and use it in GitHub Desktop.
Save yvesbou/7f9cc1514eff4e52ebbd0ee27ce283bf to your computer and use it in GitHub Desktop.
module.exports = async (_, {id}, {models}) => {
const deleteCoin = await models.ERC20Coin.deleteOne({_id: id});
if(deleteCoin.deletedCount) return{id: id}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment