41 lines
676 B
Plaintext
41 lines
676 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.bulk({
|
|
index: "byte-image-index",
|
|
refresh: "true",
|
|
operations: [
|
|
{
|
|
index: {
|
|
_id: "1",
|
|
},
|
|
},
|
|
{
|
|
"byte-image-vector": [5, -20],
|
|
title: "moose family",
|
|
},
|
|
{
|
|
index: {
|
|
_id: "2",
|
|
},
|
|
},
|
|
{
|
|
"byte-image-vector": [8, -15],
|
|
title: "alpine lake",
|
|
},
|
|
{
|
|
index: {
|
|
_id: "3",
|
|
},
|
|
},
|
|
{
|
|
"byte-image-vector": [11, 23],
|
|
title: "full moon",
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|