18 lines
373 B
Plaintext
18 lines
373 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: "users",
|
|
id: 0,
|
|
pipeline: "postal_lookup",
|
|
document: {
|
|
first_name: "Mardy",
|
|
last_name: "Brown",
|
|
geo_location: "POINT (13.5 52.5)",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|