以下是我的架构结构:
Doc1:
id: A1_1,
name: xyz,
type: A1,
field5:TTT,
_childDocuments_:Doc4,Doc5
Doc4:
id: A2_1
type:A2
field1: ABC,
field2: DEF,
field3: TVF,
field4: 2014-02-01T00:00:00Z
Doc5 在结构上与 Doc4 相似。
我正在使用 json-facets。以下是我的查询
json.facet = {
a1: {
type: terms,
field: range,
start: "NOW/YEAR-2YEAR",
end: "NOW/YEAR%2B2YEAR",
gap: "%2B1MONTH",
mincount: 1,
limit: 100,
facet: {
a2: {
type: terms,
field: field1,
facet: {
a3:{
type: terms,
field: field2,
facet:{
a4: {
type: terms,
field: field5,
domain: {blockParent: {"type:A1"}}
}
}
}
}
}
}
}
}
如果我不使用范围查询,而只是从**a2**
上面的查询部分开始我的查询,它会按预期获取结果。同样,如果我运行上述查询,所有结果blockParent
都会出现,但blockParent
相关方面的结果不会出现。