GelUpdateBase Type — drizzle-orm Architecture
Architecture documentation for the GelUpdateBase type/interface in update.ts from the drizzle-orm codebase.
Entity Profile
Dependency Diagram
graph TD 5fc1e24e_a4f5_88ab_2371_f5ab46ab68f7["GelUpdateBase"] 956cc921_a752_6eef_2068_90c91a3cc0a7["update.ts"] 5fc1e24e_a4f5_88ab_2371_f5ab46ab68f7 -->|defined in| 956cc921_a752_6eef_2068_90c91a3cc0a7 style 5fc1e24e_a4f5_88ab_2371_f5ab46ab68f7 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
drizzle-orm/src/gel-core/query-builders/update.ts lines 280–306
export interface GelUpdateBase<
TTable extends GelTable,
TQueryResult extends GelQueryResultHKT,
TFrom extends GelTable | Subquery | GelViewBase | SQL | undefined = undefined,
TReturning extends Record<string, unknown> | undefined = undefined,
TNullabilityMap extends Record<string, JoinNullability> = Record<TTable['_']['name'], 'not-null'>,
TJoins extends Join[] = [],
TDynamic extends boolean = false,
TExcludedMethods extends string = never,
> extends
QueryPromise<TReturning extends undefined ? GelQueryResultKind<TQueryResult, never> : TReturning[]>,
RunnableQuery<TReturning extends undefined ? GelQueryResultKind<TQueryResult, never> : TReturning[], 'gel'>,
SQLWrapper
{
readonly _: {
readonly dialect: 'gel';
readonly table: TTable;
readonly joins: TJoins;
readonly nullabilityMap: TNullabilityMap;
readonly queryResult: TQueryResult;
readonly from: TFrom;
readonly returning: TReturning;
readonly dynamic: TDynamic;
readonly excludedMethods: TExcludedMethods;
readonly result: TReturning extends undefined ? GelQueryResultKind<TQueryResult, never> : TReturning[];
};
}
Source
Frequently Asked Questions
What is the GelUpdateBase type?
GelUpdateBase is a type/interface in the drizzle-orm codebase, defined in drizzle-orm/src/gel-core/query-builders/update.ts.
Where is GelUpdateBase defined?
GelUpdateBase is defined in drizzle-orm/src/gel-core/query-builders/update.ts at line 280.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free