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

22 lines
391 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_multi: {
match: {
prefix: {
"user.id": {
value: "ki",
boost: 1.08,
},
},
},
},
},
});
console.log(response);
----