{
"query": {
"bool": {
"must" : [
{ "match": { "metadata.cloudAccountId": "462854006774" } },
{ "match": { "metadata.customerId": "3d472521-2a36-49d7-9080-5af57bf1af14" } },
]
}
}
}
这里我想通过两个字段过滤。它是全文匹配。cloudAccountId工作正常,但对于customerId,当我从上一部分更改任何内容时,它仍在工作。我如何才能做到必须匹配,以便它将给予结果,如果字符串对两者都是精确的。
1条答案
按热度按时间ubby3x7f1#
如果要精确匹配,请使用Term Query.