Home / Type/ SQLiteUpdateWithJoins Type — drizzle-orm Architecture

SQLiteUpdateWithJoins Type — drizzle-orm Architecture

Architecture documentation for the SQLiteUpdateWithJoins type/interface in update.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  06d87d30_141b_7ed6_65a0_1ecbc38f2b50["SQLiteUpdateWithJoins"]
  521e96ec_d755_9be7_bb0d_0c92d181f793["update.ts"]
  06d87d30_141b_7ed6_65a0_1ecbc38f2b50 -->|defined in| 521e96ec_d755_9be7_bb0d_0c92d181f793
  style 06d87d30_141b_7ed6_65a0_1ecbc38f2b50 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/query-builders/update.ts lines 101–116

export type SQLiteUpdateWithJoins<
	T extends AnySQLiteUpdate,
	TDynamic extends boolean,
	TFrom extends SQLiteTable | Subquery | SQLiteViewBase | SQL,
> = TDynamic extends true ? T : Omit<
	SQLiteUpdateBase<
		T['_']['table'],
		T['_']['resultType'],
		T['_']['runResult'],
		TFrom,
		T['_']['returning'],
		TDynamic,
		Exclude<T['_']['excludedMethods'] | 'from', 'leftJoin' | 'rightJoin' | 'innerJoin' | 'fullJoin'>
	>,
	Exclude<T['_']['excludedMethods'] | 'from', 'leftJoin' | 'rightJoin' | 'innerJoin' | 'fullJoin'>
>;

Frequently Asked Questions

What is the SQLiteUpdateWithJoins type?
SQLiteUpdateWithJoins is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/query-builders/update.ts.
Where is SQLiteUpdateWithJoins defined?
SQLiteUpdateWithJoins is defined in drizzle-orm/src/sqlite-core/query-builders/update.ts at line 101.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free