MySqlUpdateWithout Type — drizzle-orm Architecture
Architecture documentation for the MySqlUpdateWithout type/interface in update.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 26e08a55_5f96_606b_34e4_1ec4408ad3e3["MySqlUpdateWithout"] 87ec4c19_e662_b455_8a6b_c6b8ac85ec0e["update.ts"] 26e08a55_5f96_606b_34e4_1ec4408ad3e3 -->|defined in| 87ec4c19_e662_b455_8a6b_c6b8ac85ec0e style 26e08a55_5f96_606b_34e4_1ec4408ad3e3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/mysql-core/query-builders/update.ts lines 67–80
export type MySqlUpdateWithout<
T extends AnyMySqlUpdateBase,
TDynamic extends boolean,
K extends keyof T & string,
> = TDynamic extends true ? T : Omit<
MySqlUpdateBase<
T['_']['table'],
T['_']['queryResult'],
T['_']['preparedQueryHKT'],
TDynamic,
T['_']['excludedMethods'] | K
>,
T['_']['excludedMethods'] | K
>;
Source
Frequently Asked Questions
What is the MySqlUpdateWithout type?
MySqlUpdateWithout is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/mysql-core/query-builders/update.ts.
Where is MySqlUpdateWithout defined?
MySqlUpdateWithout is defined in drizzle-orm/src/mysql-core/query-builders/update.ts at line 67.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free