LoginSignup
2
1

More than 3 years have passed since last update.

俺的mongodbスニペット

Posted at

すぐ忘れるのでよく使う書き方をメモっとく

# 環境
node v10.16.0
mongoドライバ 3.2.7

in句

  const ids = [10, 20, 30 ]
  const results = await db.collection('products').aggregate([
    { $match: { $expr: { $in: ["$id", ids] } } },
  ]).toArray()

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1