47 lines
945 B
Plaintext
47 lines
945 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: "child_example",
|
|
id: 2,
|
|
routing: 1,
|
|
document: {
|
|
join: {
|
|
name: "answer",
|
|
parent: "1",
|
|
},
|
|
owner: {
|
|
location: "Norfolk, United Kingdom",
|
|
display_name: "Sam",
|
|
id: 48,
|
|
},
|
|
body: "Unfortunately you're pretty much limited to FTP...",
|
|
creation_date: "2009-05-04T13:45:37.030",
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "child_example",
|
|
id: 3,
|
|
routing: 1,
|
|
refresh: "true",
|
|
document: {
|
|
join: {
|
|
name: "answer",
|
|
parent: "1",
|
|
},
|
|
owner: {
|
|
location: "Norfolk, United Kingdom",
|
|
display_name: "Troll",
|
|
id: 49,
|
|
},
|
|
body: "Use Linux...",
|
|
creation_date: "2009-05-05T13:45:37.030",
|
|
},
|
|
});
|
|
console.log(response1);
|
|
----
|