50 lines
982 B
Plaintext
50 lines
982 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.index({
|
|
index: "my-index-000001",
|
|
id: 1,
|
|
document: {
|
|
message: "some arrays in this document...",
|
|
tags: ["elasticsearch", "wow"],
|
|
lists: [
|
|
{
|
|
name: "prog_list",
|
|
description: "programming list",
|
|
},
|
|
{
|
|
name: "cool_list",
|
|
description: "cool stuff list",
|
|
},
|
|
],
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "my-index-000001",
|
|
id: 2,
|
|
document: {
|
|
message: "no arrays in this document...",
|
|
tags: "elasticsearch",
|
|
lists: {
|
|
name: "prog_list",
|
|
description: "programming list",
|
|
},
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.search({
|
|
index: "my-index-000001",
|
|
query: {
|
|
match: {
|
|
tags: "elasticsearch",
|
|
},
|
|
},
|
|
});
|
|
console.log(response2);
|
|
----
|