Files
elasticsearch-js/docs/doc_examples/6bbc613bd4f9aec1bbdbabf5db021d28.asciidoc
2024-07-29 17:10:05 -05:00

31 lines
566 B
Plaintext

// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.search({
query: {
bool: {
should: [
{
match: {
title: "quick brown fox",
},
},
{
match: {
"title.original": "quick brown fox",
},
},
{
match: {
"title.shingles": "quick brown fox",
},
},
],
},
},
});
console.log(response);
----