我想找回
_id的文件1或者
- 带有
value === 13AND的文档anotherValue === 56
错误:
此选择器没有可用的索引。
这是我的查询:
{
"selector": {
"$or": [
{
"_id": "1"
},
{
"value": "13",
"anotherValue": "56"
}
]
}
}
索引设置:
Your available Indexes:
special: _id
json: value, anotherValue
json: _id, value, anotherValue