30 lines
525 B
Plaintext
30 lines
525 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.mget({
|
|
docs: [
|
|
{
|
|
_index: "test",
|
|
_id: "1",
|
|
_source: false,
|
|
},
|
|
{
|
|
_index: "test",
|
|
_id: "2",
|
|
_source: ["field3", "field4"],
|
|
},
|
|
{
|
|
_index: "test",
|
|
_id: "3",
|
|
_source: {
|
|
include: ["user"],
|
|
exclude: ["user.location"],
|
|
},
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|