mongodb - Select documents where doc.arr[i]>n -


i have collection elements this:

{ name: "smith", fields: [10, 20, 30] } 

is there way select documents second value of fields array ( fields[1]) > 15 ?

one solution is:

 //create multikey index on field db.test.createindex({"fields.1" : 1})  db.test.find({"fields.1" : {$gt : 15}}) 

Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

meteor - inserting data to database gives error "insert failed: Method '/texts/insert' not found" -