復習用MongoDBの基本クエリ

文字列中の含む

db.client.find({
    'text': {'$regex': 'hello'}
})

長さ

タグが3つ含まれるもの

db.client.find({
    'tags': {'$size': 3}
})

https://docs.mongodb.com/manual/reference/operator/query/size/

大小比較

Where句を利用する

client.find_one({
    "$where": "this.entities.hashtags > 0"
})

https://docs.mongodb.com/manual/reference/operator/query/where/#op._S_where

Reference