Skip to content

Instantly share code, notes, and snippets.

@xola139
Created June 15, 2023 18:20
Show Gist options
  • Save xola139/7adafb3132ad140b241d0e06877308fe to your computer and use it in GitHub Desktop.
Save xola139/7adafb3132ad140b241d0e06877308fe to your computer and use it in GitHub Desktop.
Here I will put little snippetsrelataioned with querys MongoDB
/*
var array = {id :"item1", images:[{id:"img1",type:"fire"},{id:"img2",type:"fire"},{id:"img3",type:"water"},
{id:"img4",type:"whater"},{id:"img5",type:"fire"},{id:"img6",type:"land"}
]}
*/
db.getCollection("images").find({images: {$elemMatch: {type:'fire'}}})
/*
Result:
[{id:"img1",type:"fire"},{id:"img2",type:"fire"},{id:"img5",type:"fire"}]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment