$regex
withinを使用しようとしています$match
が、一致するドキュメントが返されません。
db.collection('MyCollection', function (err, collection) {
collection.aggregate([
{ $match: { 'Code': 'Value_01', 'Field2': { $regex: '/Value_2/g' } } },
{ $project: {
_id: 1,
CodeNumber: '$Code',
FieldName2: '$Field2'
}
}
], function (err, Result_doc) {
console.log(Result_doc);
}
});
どこが間違っているのか、正しい構文を教えてもらえますか?
私も交換してみました
'Field2': { $regex: /Value_2/g }