我有一个这样的索引:
{
"rentals": {
"aliases": {},
"mappings": {
"rental": {
"properties": {
"address": {
"type": "text"
},
"availability": {
"type": "nested",
"properties": {
"chargeBasis": {
"type": "text"
},
"date": {
"type": "date"
},
"isAvailable": {
"type": "boolean"
},
"rate": {
"type": "double"
}
}
}
}
这是我的用例:
我需要搜索具有给定地址的所有“租金”。
- 这很容易完成
我需要为所有搜索的“租金”获取“可用性”数据;仅适用于今天的日期。
- 这是我被困的部分,我如何查询所有“出租”的嵌套文档?