Home / Type/ SQLiteSelect Type — drizzle-orm Architecture

SQLiteSelect Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  ef251bad_398b_62a1_b567_a6327fa64bf8["SQLiteSelect"]
  18a5fcd5_994e_4f8e_c531_decae9341796["select.types.ts"]
  ef251bad_398b_62a1_b567_a6327fa64bf8 -->|defined in| 18a5fcd5_994e_4f8e_c531_decae9341796
  style ef251bad_398b_62a1_b567_a6327fa64bf8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/query-builders/select.types.ts lines 365–372

export type SQLiteSelect<
	TTableName extends string | undefined = string | undefined,
	TResultType extends 'sync' | 'async' = 'sync' | 'async',
	TRunResult = unknown,
	TSelection extends ColumnsSelection = Record<string, any>,
	TSelectMode extends SelectMode = SelectMode,
	TNullabilityMap extends Record<string, JoinNullability> = Record<string, JoinNullability>,
> = SQLiteSelectBase<TTableName, TResultType, TRunResult, TSelection, TSelectMode, TNullabilityMap, true, never>;

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free