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

Method rawWhere

packages/db/src/clickhouse/query-builder.ts:190–195  ·  view source on GitHub ↗
(condition: string)

Source from the content-addressed store, hash-verified

188 }
189
190 rawWhere(condition: string): this {
191 if (condition) {
192 this._where.push({ condition, operator: 'AND' });
193 }
194 return this;
195 }
196
197 orWhere(column: string, operator: Operator, value?: SqlParam): this {
198 const condition = this.buildCondition(column, operator, value);

Callers 15

querySessionsCoreFunction · 0.45
createRevenueQueryMethod · 0.45
getTopPagesMethod · 0.45
getDistinctSessionsMethod · 0.45
getTopGenericSeriesMethod · 0.45
getUserJourneyMethod · 0.45
getTopEventsMethod · 0.45
getTopLinkOutMethod · 0.45
getMapDataMethod · 0.45

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected