Home / Type/ GelUpdateWithout Type — drizzle-orm Architecture

GelUpdateWithout Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  c6186992_48a2_7b58_eca6_121e7f7e3095["GelUpdateWithout"]
  956cc921_a752_6eef_2068_90c91a3cc0a7["update.ts"]
  c6186992_48a2_7b58_eca6_121e7f7e3095 -->|defined in| 956cc921_a752_6eef_2068_90c91a3cc0a7
  style c6186992_48a2_7b58_eca6_121e7f7e3095 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/gel-core/query-builders/update.ts lines 94–110

export type GelUpdateWithout<
	T extends AnyGelUpdate,
	TDynamic extends boolean,
	K extends keyof T & string,
> = TDynamic extends true ? T : Omit<
	GelUpdateBase<
		T['_']['table'],
		T['_']['queryResult'],
		T['_']['from'],
		T['_']['returning'],
		T['_']['nullabilityMap'],
		T['_']['joins'],
		TDynamic,
		T['_']['excludedMethods'] | K
	>,
	T['_']['excludedMethods'] | K
>;

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free