LogoRobo.js
Framework

OperationType

Type Alias: OperationType

type OperationType = 
  | "create"
  | "update"
  | "delete"
  | "findUnique"
  | "findMany"
  | "findFirst"
  | "count"
  | "createMany"
  | "updateMany"
  | "deleteMany"
  | "upsert";

Operation types that can be intercepted by middleware.

On this page