clearJoins method

Sqler clearJoins()

Clears all JOIN operations from the query.

Returns this to enable method chaining.

Example:

query.clearJoins(); // Removes all JOIN clauses

Implementation

Sqler clearJoins() {
  _joins = [];
  return this;
}