Waterline SQL Builder
Build SQL queries (stage 5 queries) from Waterline statements (stage 4 queries).
For more information, see https://github.com/balderdashy/waterline/blob/d782be4ba5b3daefc27850e90d81b01d3709c6bc/ARCHITECTURE.md#stage-4-query.
Purpose
This is a replacement for the Waterline-Sequel package in newer specs of the Waterline adapter interface. It is not backwards compatible.
Behind the scenes, this uses knex to compile SQL queries which should be valid in any supported
database. (The core Sails/Waterline adapters for SQL databases use this library internally.)
Refer to Concepts > Models and ORM for information on how to run queries from app-level code.
Or, if you are building a lower-level Node.js package, see Waterline Query Docs for more information on Waterline statements (aka stage 4 queries).
Keep in mind that using Waterline statements from app-level code is experimental and should be treated accordingly. While this package follows semver, from the perspective of application code, breaking changes could occur at any time (e.g. since this kind of usage is experimental, Waterline adapters could upgrade their waterline-sql-builder
dependency via a major version bump)
Usage
This module is meant to be used by adapter authors who need to generate a query to run on a given driver. Example usage is below:
var SQLBuilder = require('waterline-sql-builder');
var compile = SQLBuilder({ dialect: 'postgres' }).generate;
var report = compile({
select: ['id'],
where: {
firstName: 'Test',
lastName: 'User'
},
from: 'users'
});
console.log(report);
Help
If you have questions or are having trouble, click here.
Bugs
To report a bug, click here.
Contributing
Please observe the guidelines and conventions laid out in the Sails project contribution guide when opening issues or submitting pull requests.
License
This package, like the Sails framework, is free and open-source under the MIT License.