Skip to content

Instantly share code, notes, and snippets.

@SamWSoftware
Created January 1, 2018 07:16
Show Gist options
  • Save SamWSoftware/1b78419a7c8be8e05b58c0204cc11823 to your computer and use it in GitHub Desktop.
Save SamWSoftware/1b78419a7c8be8e05b58c0204cc11823 to your computer and use it in GitHub Desktop.
Survey.updateOne(
{
_id: match.surveyId,
recipients: {
$elemMatch: { email: email, responded: false }
}
},
{
$inc: { [match.choice]: 1 },
$set: { "recipients.$.responded": true },
lastResponded: new Date()
}
).exec();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment