Home / Type/ SQLiteSetOperatorInterface Type — drizzle-orm Architecture

SQLiteSetOperatorInterface Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/query-builders/select.types.ts lines 324–350

export interface SQLiteSetOperatorInterface<
	TTableName extends string | undefined,
	TResultType extends 'sync' | 'async',
	TRunResult,
	TSelection extends ColumnsSelection,
	TSelectMode extends SelectMode = 'single',
	TNullabilityMap extends Record<string, JoinNullability> = TTableName extends string ? Record<TTableName, 'not-null'>
		: {},
	TDynamic extends boolean = false,
	TExcludedMethods extends string = never,
	TResult extends any[] = SelectResult<TSelection, TSelectMode, TNullabilityMap>[],
	TSelectedFields extends ColumnsSelection = BuildSubquerySelection<TSelection, TNullabilityMap>,
> {
	_: {
		readonly hkt: SQLiteSelectHKTBase;
		readonly tableName: TTableName;
		readonly resultType: TResultType;
		readonly runResult: TRunResult;
		readonly selection: TSelection;
		readonly selectMode: TSelectMode;
		readonly nullabilityMap: TNullabilityMap;
		readonly dynamic: TDynamic;
		readonly excludedMethods: TExcludedMethods;
		readonly result: TResult;
		readonly selectedFields: TSelectedFields;
	};
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free