Home / Type/ SQLiteInsertReturning Type — drizzle-orm Architecture

SQLiteInsertReturning Type — drizzle-orm Architecture

Architecture documentation for the SQLiteInsertReturning type/interface in insert.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  79ab888b_6b24_4c43_95f7_785256d97daf["SQLiteInsertReturning"]
  84987318_b83b_9a2c_d793_542fa0b46175["insert.ts"]
  79ab888b_6b24_4c43_95f7_785256d97daf -->|defined in| 84987318_b83b_9a2c_d793_542fa0b46175
  style 79ab888b_6b24_4c43_95f7_785256d97daf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/sqlite-core/query-builders/insert.ts lines 123–138

export type SQLiteInsertReturning<
	T extends AnySQLiteInsert,
	TDynamic extends boolean,
	TSelectedFields extends SelectedFieldsFlat,
> = SQLiteInsertWithout<
	SQLiteInsertBase<
		T['_']['table'],
		T['_']['resultType'],
		T['_']['runResult'],
		SelectResultFields<TSelectedFields>,
		TDynamic,
		T['_']['excludedMethods']
	>,
	TDynamic,
	'returning'
>;

Frequently Asked Questions

What is the SQLiteInsertReturning type?
SQLiteInsertReturning is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/query-builders/insert.ts.
Where is SQLiteInsertReturning defined?
SQLiteInsertReturning is defined in drizzle-orm/src/sqlite-core/query-builders/insert.ts at line 123.

Analyze Your Own Codebase

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

Try Supermodel Free