I have following documents
{
name: 'John',
Address :'street 1 '
},
{
name: 'Jane',
Address :'street 2 '
},
{
name: 'Smith',
Address :'street 3 '
}
I want to search the multiple document with different vales in mongo aggregation pipeline.
That means name =('John','Smith')
. I'm expecting result is
{
name: 'John',
Address :'street 1 '
},
{
name: 'Smith',
Address :'street 3 '
}
My code is
db.articles.aggregate($match: { $or: [{ name: 'John' }, { name: 'Smith' }]);
This is giving an empty value.is it possible to get document like this way?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…