Added/updated snippets for docs (#2318)
This commit is contained in:
@ -4,30 +4,27 @@
|
||||
[source, js]
|
||||
----
|
||||
const response = await client.search({
|
||||
body: {
|
||||
query: {
|
||||
bool: {
|
||||
should: [
|
||||
{
|
||||
match: {
|
||||
title: 'quick brown fox'
|
||||
}
|
||||
query: {
|
||||
bool: {
|
||||
should: [
|
||||
{
|
||||
match: {
|
||||
title: "quick brown fox",
|
||||
},
|
||||
{
|
||||
match: {
|
||||
'title.original': 'quick brown fox'
|
||||
}
|
||||
},
|
||||
{
|
||||
match: {
|
||||
"title.original": "quick brown fox",
|
||||
},
|
||||
{
|
||||
match: {
|
||||
'title.shingles': 'quick brown fox'
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
console.log(response)
|
||||
},
|
||||
{
|
||||
match: {
|
||||
"title.shingles": "quick brown fox",
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
});
|
||||
console.log(response);
|
||||
----
|
||||
|
||||
|
||||
Reference in New Issue
Block a user