0
我想在一個文檔做過濾場上type
當過濾器和文檔有兩個對象message
和tags
,但兩者message
和tags
有type
領域。我怎樣才能通過現場有相同的字段
文件:
{
"message":{
"type":2,
"body":"test"
},
"tags":{
"tagname":"td",
"type":0
}
}
如何過濾與消息的類型的文檔是2,我試過,但沒有結果返回。
"filter" : {
"query" : {
"bool" : {
"must" : {
"bool" : {
"should" : {
"match" : {
"type" : {
"query" : 2,
"type" : "boolean",
"operator" : "AND"
}
}
}
}
}
}
}
是的,它是炒作!謝謝。 – HaiBin