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

20 lines
353 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_first: {
match: {
span_term: {
"user.id": "kimchy",
},
},
end: 3,
},
},
});
console.log(response);
----