SQLiteSelectWithout Type — drizzle-orm Architecture
Architecture documentation for the SQLiteSelectWithout type/interface in select.types.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD af1ce2a6_fe98_b98c_9efd_563588819871["SQLiteSelectWithout"] 18a5fcd5_994e_4f8e_c531_decae9341796["select.types.ts"] af1ce2a6_fe98_b98c_9efd_563588819871 -->|defined in| 18a5fcd5_994e_4f8e_c531_decae9341796 style af1ce2a6_fe98_b98c_9efd_563588819871 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/sqlite-core/query-builders/select.types.ts lines 235–255
export type SQLiteSelectWithout<
T extends AnySQLiteSelectQueryBuilder,
TDynamic extends boolean,
K extends keyof T & string,
TResetExcluded extends boolean = false,
> = TDynamic extends true ? T : Omit<
SQLiteSelectKind<
T['_']['hkt'],
T['_']['tableName'],
T['_']['resultType'],
T['_']['runResult'],
T['_']['selection'],
T['_']['selectMode'],
T['_']['nullabilityMap'],
TDynamic,
TResetExcluded extends true ? K : T['_']['excludedMethods'] | K,
T['_']['result'],
T['_']['selectedFields']
>,
TResetExcluded extends true ? K : T['_']['excludedMethods'] | K
>;
Source
Frequently Asked Questions
What is the SQLiteSelectWithout type?
SQLiteSelectWithout is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/query-builders/select.types.ts.
Where is SQLiteSelectWithout defined?
SQLiteSelectWithout is defined in drizzle-orm/src/sqlite-core/query-builders/select.types.ts at line 235.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free