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

Method having

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

Source from the content-addressed store, hash-verified

208
209 // Having methods
210 having(column: string, operator: Operator, value: SqlParam): this {
211 const condition = this.buildCondition(column, operator, value);
212 this._having.push({ condition, operator: 'AND' });
213 return this;
214 }
215
216 rawHaving(condition: string): this {
217 if (condition) {

Callers 15

getTopEntryExitMethod · 0.80
getTopGenericMethod · 0.80
getTopGenericSeriesMethod · 0.80
getUserJourneyMethod · 0.80
getTrafficSpikesMethod · 0.80
getEventSurgesMethod · 0.80
getNewVisitorTrendsMethod · 0.80

Calls 2

buildConditionMethod · 0.95
pushMethod · 0.45

Tested by

no test coverage detected