Home / Function/ constructor() — drizzle-orm Function Reference

constructor() — drizzle-orm Function Reference

Architecture documentation for the constructor() function in query.ts from the drizzle-orm codebase.

Entity Profile

Dependency Diagram

graph TD
  5e895d27_3e5b_2bbb_1002_0ca1f222b84c["constructor()"]
  dc98ebd6_1ff3_c9bf_7a1d_036fde626fa8["SingleStoreRelationalQuery"]
  5e895d27_3e5b_2bbb_1002_0ca1f222b84c -->|defined in| dc98ebd6_1ff3_c9bf_7a1d_036fde626fa8
  ab79be1f_50e1_1434_b42b_204e3005b976["constructor()"]
  ab79be1f_50e1_1434_b42b_204e3005b976 -->|calls| 5e895d27_3e5b_2bbb_1002_0ca1f222b84c
  ab79be1f_50e1_1434_b42b_204e3005b976["constructor()"]
  5e895d27_3e5b_2bbb_1002_0ca1f222b84c -->|calls| ab79be1f_50e1_1434_b42b_204e3005b976
  style 5e895d27_3e5b_2bbb_1002_0ca1f222b84c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

drizzle-orm/src/singlestore-core/query-builders/query.ts lines 80–92

	constructor(
		private fullSchema: Record<string, unknown>,
		private schema: TablesRelationalConfig,
		private tableNamesMap: Record<string, string>,
		private table: SingleStoreTable,
		private tableConfig: TableRelationalConfig,
		private dialect: SingleStoreDialect,
		private session: SingleStoreSession,
		private config: DBQueryConfig<'many', true> | true,
		private queryMode: 'many' | 'first',
	) {
		super();
	}

Domain

Subdomains

Called By

Frequently Asked Questions

What does constructor() do?
constructor() is a function in the drizzle-orm codebase, defined in drizzle-orm/src/singlestore-core/query-builders/query.ts.
Where is constructor() defined?
constructor() is defined in drizzle-orm/src/singlestore-core/query-builders/query.ts at line 80.
What does constructor() call?
constructor() calls 1 function(s): constructor.
What calls constructor()?
constructor() is called by 1 function(s): constructor.

Analyze Your Own Codebase

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

Try Supermodel Free