最近我正在研究mongo,并且经常需要在mongo shell中执行一些命令,例如:在命令行中输入以下命令
{
$switch: {
branches: [
{ case: { $eq: [ 0, 5 ] }, then: "equals" },
{ case: { $gt: [ 0, 5 ] }, then: "greater than" },
{ case: { $lt: [ 0, 5 ] }, then: "less than" }
]
}
}
它几乎输出为我的输入。
但我真的想要的是评估结果,
"less than"
是否有某种方式可以直接在mongo shell中输出结果或存在其他一些mongo客户端可以支持它?