GelBigInt64Builder Class — drizzle-orm Architecture
Architecture documentation for the GelBigInt64Builder class in bigintT.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD e10c89db_6a1a_19ed_2b6a_9bd612b1ac67["GelBigInt64Builder"] e5c9b8ef_d760_345f_c691_226de7d20135["bigintT.ts"] e10c89db_6a1a_19ed_2b6a_9bd612b1ac67 -->|defined in| e5c9b8ef_d760_345f_c691_226de7d20135 808301fe_b267_5ae0_3eab_3c89fc2d30e5["constructor()"] e10c89db_6a1a_19ed_2b6a_9bd612b1ac67 -->|method| 808301fe_b267_5ae0_3eab_3c89fc2d30e5 e7411977_f415_b2a6_d5ab_0396d0c9a121["build()"] e10c89db_6a1a_19ed_2b6a_9bd612b1ac67 -->|method| e7411977_f415_b2a6_d5ab_0396d0c9a121
Relationship Graph
Source Code
drizzle-orm/src/gel-core/columns/bigintT.ts lines 17–35
export class GelBigInt64Builder<T extends ColumnBuilderBaseConfig<'bigint', 'GelBigInt64'>>
extends GelIntColumnBaseBuilder<T>
{
static override readonly [entityKind]: string = 'GelBigInt64Builder';
constructor(name: T['name']) {
super(name, 'bigint', 'GelBigInt64');
}
/** @internal */
override build<TTableName extends string>(
table: AnyGelTable<{ name: TTableName }>,
): GelBigInt64<MakeColumnConfig<T, TTableName>> {
return new GelBigInt64<MakeColumnConfig<T, TTableName>>(
table,
this.config as ColumnBuilderRuntimeConfig<any, any>,
);
}
}
Domain
Defined In
Source
Frequently Asked Questions
What is the GelBigInt64Builder class?
GelBigInt64Builder is a class in the drizzle-orm codebase, defined in drizzle-orm/src/gel-core/columns/bigintT.ts.
Where is GelBigInt64Builder defined?
GelBigInt64Builder is defined in drizzle-orm/src/gel-core/columns/bigintT.ts at line 17.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free