17 lines
429 B
Plaintext
17 lines
429 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.asyncSearch.submit({
|
|
index: "my-index-000001,cluster*:my-index-*,cluster_three:-my-index-000001",
|
|
query: {
|
|
match: {
|
|
"user.id": "kimchy",
|
|
},
|
|
},
|
|
_source: ["user.id", "message", "http.response.status_code"],
|
|
});
|
|
console.log(response);
|
|
----
|