{"name": "sitt"}
のように見えます 常にtrueに解決されます 。代わりに、**$eq**
を使用する必要があります それを機能させるための演算子。
**$match**
にも注意してください 3つの式は
{$match: {name: /sitt/i}}
したがって、クエリは次のようになります。
db.getCollection('tags').aggregate([
{
$match:{
name:/sitt/i
}
},
{
$project:{
name: 1,
score:{
$switch:{
branches:[
{
case:{
$eq:[
"$name",
"sitt"
]
},
then:100
}
],
default:50
}
}
}
}
])