Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はmongoを照会するための最良の方法を見つけようとしています。Mongoidと最新のmongoバージョンを使用しています
私がやりたいのはこのようなクエリです
user_id=>[IDの配列]およびuser_type=>"some_type" OR user_id=>[IDの配列]およびuser_type=>"some_type"
どうすればMongo/Mongoidでそれを行うことができますか?
モンゴシェルでは、次のようになります。
db.yourcollection.find({$or: [ {user_id: {$in: [array_of_ids]}, user_type: "some_type"}, {user_id: {$in: [array_of_ids2]}, user_type: "some_type2"} ]});