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

23 lines
425 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: "postal_codes",
id: 1,
refresh: "wait_for",
document: {
location: {
type: "envelope",
coordinates: [
[13, 53],
[14, 52],
],
},
postal_code: "96598",
},
});
console.log(response);
----