我想知道以下两个dsl是否有差异?
摘要1
"query" : {
"bool" : {
"must" : {
"multi_match" : {
"query" : "Google",
"fields" : [ "custNm" ]
}
}
}
}
摘要2
"query" : {
"multi_match" : {
"query" : "Google",
"fields" : [ "custNm" ]
}
}