Home / Type/ SQLiteSelectKind Type — drizzle-orm Architecture

SQLiteSelectKind Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/query-builders/select.types.ts lines 146–169

export type SQLiteSelectKind<
	T extends SQLiteSelectHKTBase,
	TTableName extends string | undefined,
	TResultType extends 'sync' | 'async',
	TRunResult,
	TSelection extends ColumnsSelection,
	TSelectMode extends SelectMode,
	TNullabilityMap extends Record<string, JoinNullability>,
	TDynamic extends boolean,
	TExcludedMethods extends string,
	TResult = SelectResult<TSelection, TSelectMode, TNullabilityMap>[],
	TSelectedFields = BuildSubquerySelection<TSelection, TNullabilityMap>,
> = (T & {
	tableName: TTableName;
	resultType: TResultType;
	runResult: TRunResult;
	selection: TSelection;
	selectMode: TSelectMode;
	nullabilityMap: TNullabilityMap;
	dynamic: TDynamic;
	excludedMethods: TExcludedMethods;
	result: TResult;
	selectedFields: TSelectedFields;
})['_type'];

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free