58 lines
1.2 KiB
Plaintext
58 lines
1.2 KiB
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: "test",
|
|
id: 1,
|
|
refresh: "true",
|
|
document: {
|
|
url: "https://en.wikipedia.org/wiki/2016_Summer_Olympics",
|
|
content: "Rio 2016",
|
|
pagerank: 50.3,
|
|
url_length: 42,
|
|
topics: {
|
|
sports: 50,
|
|
brazil: 30,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "test",
|
|
id: 2,
|
|
refresh: "true",
|
|
document: {
|
|
url: "https://en.wikipedia.org/wiki/2016_Brazilian_Grand_Prix",
|
|
content: "Formula One motor race held on 13 November 2016",
|
|
pagerank: 50.3,
|
|
url_length: 47,
|
|
topics: {
|
|
sports: 35,
|
|
"formula one": 65,
|
|
brazil: 20,
|
|
},
|
|
},
|
|
});
|
|
console.log(response1);
|
|
|
|
const response2 = await client.index({
|
|
index: "test",
|
|
id: 3,
|
|
refresh: "true",
|
|
document: {
|
|
url: "https://en.wikipedia.org/wiki/Deadpool_(film)",
|
|
content: "Deadpool is a 2016 American superhero film",
|
|
pagerank: 50.3,
|
|
url_length: 37,
|
|
topics: {
|
|
movies: 60,
|
|
"super hero": 65,
|
|
},
|
|
},
|
|
});
|
|
console.log(response2);
|
|
----
|