TableBeforeDeleteContext

View Source

Summary

Context passed to the beforeDelete hook.

Signature

type TableBeforeDeleteContext = {
  limit?: number;
  offset?: number;
  orderBy: ReadonlyArray<OrderByClause>;
  tableName: string;
  where: ReadonlyArray<Predicate<string>>;
};