Home / Type/ GelSelectWithout Type — drizzle-orm Architecture

GelSelectWithout Type — drizzle-orm Architecture

Architecture documentation for the GelSelectWithout type/interface in select.types.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  a43a5771_9080_4606_4164_66d37cd7d874["GelSelectWithout"]
  1802ae0d_e56f_7575_eb4a_b95e50f061c0["select.types.ts"]
  a43a5771_9080_4606_4164_66d37cd7d874 -->|defined in| 1802ae0d_e56f_7575_eb4a_b95e50f061c0
  style a43a5771_9080_4606_4164_66d37cd7d874 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/gel-core/query-builders/select.types.ts lines 234–252

export type GelSelectWithout<
	T extends AnyGelSelectQueryBuilder,
	TDynamic extends boolean,
	K extends keyof T & string,
	TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
	GelSelectKind<
		T['_']['hkt'],
		T['_']['tableName'],
		T['_']['selection'],
		T['_']['selectMode'],
		T['_']['nullabilityMap'],
		TDynamic,
		TResetExcluded extends true ? K : T['_']['excludedMethods'] | K,
		T['_']['result'],
		T['_']['selectedFields']
	>,
	TResetExcluded extends true ? K : T['_']['excludedMethods'] | K
>;

Frequently Asked Questions

What is the GelSelectWithout type?
GelSelectWithout is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/gel-core/query-builders/select.types.ts.
Where is GelSelectWithout defined?
GelSelectWithout is defined in drizzle-orm/src/gel-core/query-builders/select.types.ts at line 234.

Analyze Your Own Codebase

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

Try Supermodel Free