Notice
Recent Posts
Recent Comments
Link
목록_id (1)
개발스토리
MongoDB aggregation _id $Match 옵션
const a = await ~Model.find({ _id: {$in: arr} }); const b = await ~Model.aggregate([ {$match: {_id: {$in: arr}}]); 배열을 넘겨서 매칭되는 모든 도큐먼트를 불러오는 것을 의도로 위 코드를 작성했는데 조회가 이루어지지 않았다. 알아보니까 aggregate의 match에서 _id 필드를 넣고 싶을 때는 ObjectId로 string을 바꾸어 주어야 한다.
node.js
2021. 5. 10. 23:37