Query for documents where array size is greater than 1

后端 未结 14 1924
北海茫月
北海茫月 2020-11-22 03:02

I have a MongoDB collection with documents in the following format:

{
  \"_id\" : ObjectId(\"4e8ae86d08101908e1000001\"),
  \"name\" : [\"Name\"],
  \"zipcod         


        
14条回答
  •  无人及你
    2020-11-22 03:40

    I know its old question, but I am trying this with $gte and $size in find. I think to find() is faster.

    db.getCollection('collectionName').find({ name : { $gte : {  $size : 1 } }})
    

提交回复
热议问题