16 lines
333 B
Plaintext
16 lines
333 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.search({
|
|
query: {
|
|
query_string: {
|
|
query: "(new york city) OR (big apple)",
|
|
default_field: "content",
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|