我正在尝试使用邮递员预先请求脚本从Elasticsearch返回的响应中排除字段,但是排除似乎无法正常工作。以下是我的请求前脚本-
pm.sendRequest({
url: 'https://' + pm.globals.get("creds") + pm.globals.get("server") + ':9200/' + pm.globals.get("details") + '/_read',
method: 'POST',
header: {
'content-type': 'application/json'
},
body: {
mode: 'raw',
raw: JSON.stringify({
"query": {
"bool": {
"must": [
{
"match": {
"id":pm.environment.get("id")
}
}
]
}
},
"_source": {
"exclude" : ["demographic.*"]
}
}
)
}
}
);
我已经在弹性搜索中测试了此查询,并且按预期运行。我将不胜感激