Home / Type/ GelDeleteWithout Type — drizzle-orm Architecture

GelDeleteWithout Type — drizzle-orm Architecture

Architecture documentation for the GelDeleteWithout type/interface in delete.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  6188011f_04c3_a4b3_fb3f_bbbd9fc47a07["GelDeleteWithout"]
  ef93bf01_da17_ca76_efbc_b9108d7fe88d["delete.ts"]
  6188011f_04c3_a4b3_fb3f_bbbd9fc47a07 -->|defined in| ef93bf01_da17_ca76_efbc_b9108d7fe88d
  style 6188011f_04c3_a4b3_fb3f_bbbd9fc47a07 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/gel-core/query-builders/delete.ts lines 23–37

export type GelDeleteWithout<
	T extends AnyGelDeleteBase,
	TDynamic extends boolean,
	K extends keyof T & string,
> = TDynamic extends true ? T
	: Omit<
		GelDeleteBase<
			T['_']['table'],
			T['_']['queryResult'],
			T['_']['returning'],
			TDynamic,
			T['_']['excludedMethods'] | K
		>,
		T['_']['excludedMethods'] | K
	>;

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free