我如何在 mongoose 中将 $gte 与其他值一起使用
How can i use $gte with other values in mongoose
如何使用 Mongoose 执行类似于以下代码的操作:
"filter":{"custom_fields.ram": {"$in": [1.2, {"$gte":1.8}]}}
与其这样使用,不如这样:
"filter":{"custom_fields.ram": {"$or": [{"$in": [1.2]}, {"$gte":1.8}]}}
如何使用 Mongoose 执行类似于以下代码的操作:
"filter":{"custom_fields.ram": {"$in": [1.2, {"$gte":1.8}]}}
与其这样使用,不如这样:
"filter":{"custom_fields.ram": {"$or": [{"$in": [1.2]}, {"$gte":1.8}]}}