What is the use cases of $and operator.
Looks like those are same
this.matchModel.find({
color: 'red',
size: 'large'
})
this.matchModel.find({
$and: [
{
color: 'red'
},
{
size: 'large'
}
]
})
Aren't those same?