Home / Type/ PgSelectWithout Type — drizzle-orm Architecture

PgSelectWithout Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  f500a64f_00f9_f407_0830_8ec7f719f2a4["PgSelectWithout"]
  65d45edf_0d8a_b7f0_1780_573c12d9a0e6["select.types.ts"]
  f500a64f_00f9_f407_0830_8ec7f719f2a4 -->|defined in| 65d45edf_0d8a_b7f0_1780_573c12d9a0e6
  style f500a64f_00f9_f407_0830_8ec7f719f2a4 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/pg-core/query-builders/select.types.ts lines 246–264

export type PgSelectWithout<
	T extends AnyPgSelectQueryBuilder,
	TDynamic extends boolean,
	K extends keyof T & string,
	TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
	PgSelectKind<
		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 PgSelectWithout type?
PgSelectWithout is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/pg-core/query-builders/select.types.ts.
Where is PgSelectWithout defined?
PgSelectWithout is defined in drizzle-orm/src/pg-core/query-builders/select.types.ts at line 246.

Analyze Your Own Codebase

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

Try Supermodel Free