SQLiteBlobJsonBuilder Class — drizzle-orm Architecture
Architecture documentation for the SQLiteBlobJsonBuilder class in blob.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 14a1ccab_30ed_7095_16b1_9086a93df94c["SQLiteBlobJsonBuilder"] 5c8a5ab6_4356_4d2f_782b_4e0b3b38b801["blob.ts"] 14a1ccab_30ed_7095_16b1_9086a93df94c -->|defined in| 5c8a5ab6_4356_4d2f_782b_4e0b3b38b801 5e361304_bdc0_ebf5_1a14_36de1752c190["constructor()"] 14a1ccab_30ed_7095_16b1_9086a93df94c -->|method| 5e361304_bdc0_ebf5_1a14_36de1752c190 6d8851f5_0025_5013_09c6_025eb5d02a48["build()"] 14a1ccab_30ed_7095_16b1_9086a93df94c -->|method| 6d8851f5_0025_5013_09c6_025eb5d02a48
Relationship Graph
Source Code
drizzle-orm/src/sqlite-core/columns/blob.ts lines 73–91
export class SQLiteBlobJsonBuilder<T extends ColumnBuilderBaseConfig<'json', 'SQLiteBlobJson'>>
extends SQLiteColumnBuilder<T>
{
static override readonly [entityKind]: string = 'SQLiteBlobJsonBuilder';
constructor(name: T['name']) {
super(name, 'json', 'SQLiteBlobJson');
}
/** @internal */
override build<TTableName extends string>(
table: AnySQLiteTable<{ name: TTableName }>,
): SQLiteBlobJson<MakeColumnConfig<T, TTableName>> {
return new SQLiteBlobJson<MakeColumnConfig<T, TTableName>>(
table,
this.config as ColumnBuilderRuntimeConfig<any>,
);
}
}
Domain
Defined In
Source
Frequently Asked Questions
What is the SQLiteBlobJsonBuilder class?
SQLiteBlobJsonBuilder is a class in the drizzle-orm codebase, defined in drizzle-orm/src/sqlite-core/columns/blob.ts.
Where is SQLiteBlobJsonBuilder defined?
SQLiteBlobJsonBuilder is defined in drizzle-orm/src/sqlite-core/columns/blob.ts at line 73.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free