Added/updated snippets for docs (#2318)
This commit is contained in:
38
docs/doc_examples/388ec2b038d3ad69378f4c2e5bc36dce.asciidoc
Normal file
38
docs/doc_examples/388ec2b038d3ad69378f4c2e5bc36dce.asciidoc
Normal file
@ -0,0 +1,38 @@
|
||||
// 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_near: {
|
||||
clauses: [
|
||||
{
|
||||
span_term: {
|
||||
text: "quick brown",
|
||||
},
|
||||
},
|
||||
{
|
||||
span_field_masking: {
|
||||
query: {
|
||||
span_term: {
|
||||
"text.stems": "fox",
|
||||
},
|
||||
},
|
||||
field: "text",
|
||||
},
|
||||
},
|
||||
],
|
||||
slop: 5,
|
||||
in_order: false,
|
||||
},
|
||||
},
|
||||
highlight: {
|
||||
require_field_match: false,
|
||||
fields: {
|
||||
"*": {},
|
||||
},
|
||||
},
|
||||
});
|
||||
console.log(response);
|
||||
----
|
||||
Reference in New Issue
Block a user