Google News
logo
MongoDB - Quiz(MCQ)
______ filters the document stream to allow only matching documents to pass unmodified into the next pipeline stage.
A)
$match
B)
$reg
C)
$regex
D)
None of the above

Correct Answer :   $match


Explanation : $match uses standard MongoDB queries. For each input document, outputs either one document (a match) or zero documents (no match).

Advertisement