Home / Type/ SelectResultFields Type — drizzle-orm Architecture

SelectResultFields Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  33145788_ce73_61f2_85a0_5a16f1814092["SelectResultFields"]
  7e7f8434_4765_0a70_b7fa_d197dd2fa706["select.types.ts"]
  33145788_ce73_61f2_85a0_5a16f1814092 -->|defined in| 7e7f8434_4765_0a70_b7fa_d197dd2fa706
  style 33145788_ce73_61f2_85a0_5a16f1814092 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/query-builders/select.types.ts lines 169–173

export type SelectResultFields<TSelectedFields, TDeep extends boolean = true> = Simplify<
	{
		[Key in keyof TSelectedFields]: SelectResultField<TSelectedFields[Key], TDeep>;
	}
>;

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free