GelLocalDateStringBuilder Class — drizzle-orm Architecture
Architecture documentation for the GelLocalDateStringBuilder class in localdate.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 437ea9b5_9ce8_b23b_7103_960c87e72264["GelLocalDateStringBuilder"] 056bb366_be5c_32a5_968d_8ae21c1f826c["localdate.ts"] 437ea9b5_9ce8_b23b_7103_960c87e72264 -->|defined in| 056bb366_be5c_32a5_968d_8ae21c1f826c 8936b3aa_71cc_45f6_ec0a_f6869096bf27["constructor()"] 437ea9b5_9ce8_b23b_7103_960c87e72264 -->|method| 8936b3aa_71cc_45f6_ec0a_f6869096bf27 f72d7a16_0047_afaa_1497_1fc69003c87b["build()"] 437ea9b5_9ce8_b23b_7103_960c87e72264 -->|method| f72d7a16_0047_afaa_1497_1fc69003c87b
Relationship Graph
Source Code
drizzle-orm/src/gel-core/columns/localdate.ts lines 18–36
export class GelLocalDateStringBuilder<T extends ColumnBuilderBaseConfig<'localDate', 'GelLocalDateString'>>
extends GelLocalDateColumnBaseBuilder<T>
{
static override readonly [entityKind]: string = 'GelLocalDateStringBuilder';
constructor(name: T['name']) {
super(name, 'localDate', 'GelLocalDateString');
}
/** @internal */
override build<TTableName extends string>(
table: AnyGelTable<{ name: TTableName }>,
): GelLocalDateString<MakeColumnConfig<T, TTableName>> {
return new GelLocalDateString<MakeColumnConfig<T, TTableName>>(
table,
this.config as ColumnBuilderRuntimeConfig<any, any>,
);
}
}
Domain
Source
Frequently Asked Questions
What is the GelLocalDateStringBuilder class?
GelLocalDateStringBuilder is a class in the drizzle-orm codebase, defined in drizzle-orm/src/gel-core/columns/localdate.ts.
Where is GelLocalDateStringBuilder defined?
GelLocalDateStringBuilder is defined in drizzle-orm/src/gel-core/columns/localdate.ts at line 18.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free