Created
June 15, 2023 18:20
-
-
Save xola139/7adafb3132ad140b241d0e06877308fe to your computer and use it in GitHub Desktop.
Here I will put little snippetsrelataioned with querys MongoDB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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