GelUpdateJoin Type — drizzle-orm Architecture
Architecture documentation for the GelUpdateJoin type/interface in update.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 2e30bc9d_a973_a841_0de2_d09a387732f2["GelUpdateJoin"] 956cc921_a752_6eef_2068_90c91a3cc0a7["update.ts"] 2e30bc9d_a973_a841_0de2_d09a387732f2 -->|defined in| 956cc921_a752_6eef_2068_90c91a3cc0a7 style 2e30bc9d_a973_a841_0de2_d09a387732f2 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/gel-core/query-builders/update.ts lines 155–173
export type GelUpdateJoin<
T extends AnyGelUpdate,
TDynamic extends boolean,
TJoinType extends JoinType,
TJoinedTable extends GelTable | Subquery | GelViewBase | SQL,
> = TDynamic extends true ? T : GelUpdateBase<
T['_']['table'],
T['_']['queryResult'],
T['_']['from'],
T['_']['returning'],
AppendToNullabilityMap<T['_']['nullabilityMap'], GetSelectTableName<TJoinedTable>, TJoinType>,
[...T['_']['joins'], {
name: GetSelectTableName<TJoinedTable>;
joinType: TJoinType;
table: TJoinedTable;
}],
TDynamic,
T['_']['excludedMethods']
>;
Source
Frequently Asked Questions
What is the GelUpdateJoin type?
GelUpdateJoin is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/gel-core/query-builders/update.ts.
Where is GelUpdateJoin defined?
GelUpdateJoin is defined in drizzle-orm/src/gel-core/query-builders/update.ts at line 155.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free