Remix
Remix
remix/data-table · TypeView Source

ExistsOperation

Summary

Canonical exists statement shape consumed by adapters.

Signature

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