21 lines
409 B
Plaintext
21 lines
409 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: "txt",
|
|
query: "SELECT * FROM library ORDER BY page_count DESC",
|
|
filter: {
|
|
range: {
|
|
page_count: {
|
|
gte: 100,
|
|
lte: 200,
|
|
},
|
|
},
|
|
},
|
|
fetch_size: 5,
|
|
});
|
|
console.log(response);
|
|
----
|