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

18 lines
372 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: {
multi_match: {
query: "Jon",
type: "cross_fields",
analyzer: "standard",
fields: ["first", "last", "*.edge"],
},
},
});
console.log(response);
----