query
const query = new QueryBuilder("public", "books")
.where("author_age", "=", 25)
.build();
// Execute the query
SchemaJS.query(query).then((rows) => {
SchemaJS.print(rows);
});Last updated
const query = new QueryBuilder("public", "books")
.where("author_age", "=", 25)
.build();
// Execute the query
SchemaJS.query(query).then((rows) => {
SchemaJS.print(rows);
});Last updated