ExistsOperation

View Source

Summary

Canonical exists statement shape consumed by adapters.

Signature

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