SQLiteUpdateConfig Type — drizzle-orm Architecture
Architecture documentation for the SQLiteUpdateConfig type/interface in update.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 749a9ec2_23d2_9d90_b843_905ad5ef27f7["SQLiteUpdateConfig"] 521e96ec_d755_9be7_bb0d_0c92d181f793["update.ts"] 749a9ec2_23d2_9d90_b843_905ad5ef27f7 -->|defined in| 521e96ec_d755_9be7_bb0d_0c92d181f793 style 749a9ec2_23d2_9d90_b843_905ad5ef27f7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/sqlite-core/query-builders/update.ts lines 27–37
export interface SQLiteUpdateConfig {
where?: SQL | undefined;
limit?: number | Placeholder;
orderBy?: (SQLiteColumn | SQL | SQL.Aliased)[];
set: UpdateSet;
table: SQLiteTable;
from?: SQLiteTable | Subquery | SQLiteViewBase | SQL;
joins: SQLiteSelectJoinConfig[];
returning?: SelectedFieldsOrdered;
withList?: Subquery[];
}
Source
Frequently Asked Questions
What is the SQLiteUpdateConfig type?
SQLiteUpdateConfig is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/query-builders/update.ts.
Where is SQLiteUpdateConfig defined?
SQLiteUpdateConfig is defined in drizzle-orm/src/sqlite-core/query-builders/update.ts at line 27.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free