(cherry picked from commit f737290d10)
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
13 lines
308 B
Plaintext
13 lines
308 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.sql.query({
|
|
format: "yaml",
|
|
query: "SELECT * FROM library ORDER BY page_count DESC",
|
|
fetch_size: 5,
|
|
});
|
|
console.log(response);
|
|
----
|