Home / Type/ MySqlSetOperatorInterface Type — drizzle-orm Architecture

MySqlSetOperatorInterface Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

graph TD
  ea668215_8e40_4331_2470_8127aef7b1c2["MySqlSetOperatorInterface"]
  b145d7b0_f119_a29a_6da7_7ad4e74e20fa["select.types.ts"]
  ea668215_8e40_4331_2470_8127aef7b1c2 -->|defined in| b145d7b0_f119_a29a_6da7_7ad4e74e20fa
  style ea668215_8e40_4331_2470_8127aef7b1c2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/mysql-core/query-builders/select.types.ts lines 321–345

export interface MySqlSetOperatorInterface<
	TTableName extends string | undefined,
	TSelection extends ColumnsSelection,
	TSelectMode extends SelectMode,
	TPreparedQueryHKT extends PreparedQueryHKTBase = PreparedQueryHKTBase,
	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: MySqlSelectHKT;
		readonly tableName: TTableName;
		readonly selection: TSelection;
		readonly selectMode: TSelectMode;
		readonly preparedQueryHKT: TPreparedQueryHKT;
		readonly nullabilityMap: TNullabilityMap;
		readonly dynamic: TDynamic;
		readonly excludedMethods: TExcludedMethods;
		readonly result: TResult;
		readonly selectedFields: TSelectedFields;
	};
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free