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

34 lines
669 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.indices.create({
index: "drivers",
mappings: {
properties: {
driver: {
type: "nested",
properties: {
last_name: {
type: "text",
},
vehicle: {
type: "nested",
properties: {
make: {
type: "text",
},
model: {
type: "text",
},
},
},
},
},
},
},
});
console.log(response);
----