MCPcopy Create free account
hub / github.com/Openpanel-dev/openpanel / orWhere

Method orWhere

packages/db/src/clickhouse/query-builder.ts:197–201  ·  view source on GitHub ↗
(column: string, operator: Operator, value?: SqlParam)

Source from the content-addressed store, hash-verified

195 }
196
197 orWhere(column: string, operator: Operator, value?: SqlParam): this {
198 const condition = this.buildCondition(column, operator, value);
199 this._where.push({ condition, operator: 'OR' });
200 return this;
201 }
202
203 // Group by methods
204 groupBy(columns: (string | null | undefined | false)[]): this {

Callers 1

getTopPagesMethod · 0.45

Calls 2

buildConditionMethod · 0.95
pushMethod · 0.45

Tested by

no test coverage detected