Home / Type/ SingleStoreUpdateWithout Type — drizzle-orm Architecture

SingleStoreUpdateWithout Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  ad2e5728_ccac_4396_bf25_b77ef5e28498["SingleStoreUpdateWithout"]
  64096455_7280_542c_f914_37d4fc92062b["update.ts"]
  ad2e5728_ccac_4396_bf25_b77ef5e28498 -->|defined in| 64096455_7280_542c_f914_37d4fc92062b
  style ad2e5728_ccac_4396_bf25_b77ef5e28498 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/singlestore-core/query-builders/update.ts lines 72–85

export type SingleStoreUpdateWithout<
	T extends AnySingleStoreUpdateBase,
	TDynamic extends boolean,
	K extends keyof T & string,
> = TDynamic extends true ? T : Omit<
	SingleStoreUpdateBase<
		T['_']['table'],
		T['_']['queryResult'],
		T['_']['preparedQueryHKT'],
		TDynamic,
		T['_']['excludedMethods'] | K
	>,
	T['_']['excludedMethods'] | K
>;

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free