Files
elasticsearch-js/docs/doc_examples/b3cd07f02059165fd62a2f148be3dc58.asciidoc
2024-10-21 10:59:54 -05:00

36 lines
593 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: "idx",
settings: {
index: {
mapping: {
source: {
mode: "synthetic",
},
},
},
},
mappings: {
properties: {
long: {
type: "long",
},
},
},
});
console.log(response);
const response1 = await client.index({
index: "idx",
id: 1,
document: {
long: [0, 0, -123466, 87612],
},
});
console.log(response1);
----