Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion lib/woql.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* eslint-disable camelcase */
/* eslint-disable no-underscore-dangle */
/* eslint no-trailing-spaces: ["error", { "ignoreComments": true }] */
/// /@ts-check
// I HAVE TO REVIEW THE Inheritance and the prototype chain
const WOQLQuery = require('./query/woqlBuilder');
Expand Down Expand Up @@ -1078,7 +1079,8 @@ WOQL.order_by = function (...varNames) {
/**
*
* Groups the results of the contained subquery on the basis of identical values for Groupvars,
* extracts the patterns defined in PatternVars and stores the results in GroupedVar
* extracts the patterns defined in PatternVars and stores the results in GroupedVar.
* See also {@link /docs/group-query-results/ How to Group Results in WOQL}
* @param {array|string|Var} varList - Either a single variable or an array of variables
* @param {array|string|Var} patternVars - Either a single variable or an array of variables
* @param {string|Var} resultVarName - output variable name
Expand Down