Skip to content

Instantly share code, notes, and snippets.

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 muhammadghazali/972f1ecbc419f613242d30180de139c2 to your computer and use it in GitHub Desktop.
Save muhammadghazali/972f1ecbc419f613242d30180de139c2 to your computer and use it in GitHub Desktop.
Taking note the $set behavior
let update = {
$set: {
hello: {
world: 'anything'
}
}
};
let update = {
$set: {
// only update the world field inside the `hello`
'hello.world': 'anything'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment