Hi,
Can someone help me understand what is the difference in the syntax considering ‘air_routes’ collection among these two $match expressions - I’m seeing different result:
$match: {
“airplane”: /747|380/
}
vs
$match: {
“airplane”: { $in: [“747”, “380”] }
}
Regards,
Shravan