CountOperation

View Source

Summary

Canonical count statement shape consumed by adapters.

Signature

type CountOperation<table> = {
  groupBy: string[];
  having: Predicate[];
  joins: JoinClause[];
  kind: "count";
  table: table;
  where: Predicate[];
};