Guest User

Untitled

a guest
Feb 23rd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. contactModel.update({
  2. 'user_id': req.params.user_id,
  3. 'contacts.contact_id': req.params.id
  4. }, {
  5. $set: {
  6. 'contacts.$.name': req.body.contact.name,
  7. 'contacts.$.phone_number': req.body.contact.phone_number
  8. }
  9. })
Add Comment
Please, Sign In to add comment