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

37 lines
676 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: {
span_within: {
little: {
span_term: {
field1: "foo",
},
},
big: {
span_near: {
clauses: [
{
span_term: {
field1: "bar",
},
},
{
span_term: {
field1: "baz",
},
},
],
slop: 5,
in_order: true,
},
},
},
},
});
console.log(response);
----