From 68264d59abf480cc316b74e805ff9108b1a6cd82 Mon Sep 17 00:00:00 2001 From: Diogo Doreto Date: Wed, 11 Nov 2015 15:47:26 -0200 Subject: [PATCH] Add documentation to SQLConnector.prototype.buildJoins --- lib/sql.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/sql.js b/lib/sql.js index f1bb9a0..ceb94dc 100644 --- a/lib/sql.js +++ b/lib/sql.js @@ -1047,6 +1047,12 @@ SQLConnector.prototype.buildSelect = function(model, filter, options) { return this.parameterize(selectStmt); }; +/** + * Build the SQL INNER JOIN clauses + * @param {string} model Model name + * @param {object} where An object for the where conditions + * @returns {ParameterizedSQL} The SQL INNER JOIN clauses + */ SQLConnector.prototype.buildJoins = function(model, where) { var modelDef = this.getModelDefinition(model); var relations = modelDef.model.relations;