我有这个代码:
let jobs = await client.search({
index: 'something',
type: 'doc',
body: {
query: {
bool: {
must: [
{
match: {
title: `test`
}
},
{
match: {
desc: `test`
}
}
]
}
}
}
});
对我来说,我需要添加一个标题和一个 desc ,但我希望搜索即使一个不存在,这意味着我想要 title 或 desc,有人知道正确的语法吗?