Home / Type/ SingleStoreSelectWithout Type — drizzle-orm Architecture

SingleStoreSelectWithout Type — drizzle-orm Architecture

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

drizzle-orm/src/singlestore-core/query-builders/select.types.ts lines 228–247

export type SingleStoreSelectWithout<
	T extends AnySingleStoreSelectQueryBuilder,
	TDynamic extends boolean,
	K extends keyof T & string,
	TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
	SingleStoreSelectKind<
		T['_']['hkt'],
		T['_']['tableName'],
		T['_']['selection'],
		T['_']['selectMode'],
		T['_']['preparedQueryHKT'],
		T['_']['nullabilityMap'],
		TDynamic,
		TResetExcluded extends true ? K : T['_']['excludedMethods'] | K,
		T['_']['result'],
		T['_']['selectedFields']
	>,
	TResetExcluded extends true ? K : T['_']['excludedMethods'] | K
>;

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free