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