Skip to content

Instantly share code, notes, and snippets.

@rafaelmaeuer
Last active October 9, 2017 13:13
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 rafaelmaeuer/b7cb0adef1cf713a0856fda76655589b to your computer and use it in GitHub Desktop.
Save rafaelmaeuer/b7cb0adef1cf713a0856fda76655589b to your computer and use it in GitHub Desktop.
Find document with array that contains a specific value (MongoDB) - From https://stackoverflow.com/questions/18148166/find-document-with-array-that-contains-a-specific-value
PersonModel.find({ favouriteFoods: { "$in" : ["sushi"]} }, ...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment