import { entityKind } from "../../entity.js"; import type { GelDialect } from "../dialect.js"; import type { GelPreparedQuery, GelQueryResultHKT, GelQueryResultKind, GelSession, PreparedQueryConfig } from "../session.js"; import type { GelTable } from "../table.js"; import type { SelectResultFields } from "../../query-builders/select.types.js"; import { QueryPromise } from "../../query-promise.js"; import type { RunnableQuery } from "../../runnable-query.js"; import type { Query, SQL, SQLWrapper } from "../../sql/sql.js"; import type { Subquery } from "../../subquery.js"; import type { SelectedFieldsFlat, SelectedFieldsOrdered } from "./select.types.js"; export type GelDeleteWithout = TDynamic extends true ? T : Omit, T['_']['excludedMethods'] | K>; export type GelDelete | undefined = Record | undefined> = GelDeleteBase; export interface GelDeleteConfig { where?: SQL | undefined; table: GelTable; returning?: SelectedFieldsOrdered; withList?: Subquery[]; } export type GelDeleteReturningAll = GelDeleteWithout, TDynamic, 'returning'>; export type GelDeleteReturning = GelDeleteWithout, TDynamic, T['_']['excludedMethods']>, TDynamic, 'returning'>; export type GelDeletePrepare = GelPreparedQuery : T['_']['returning'][]; }>; export type GelDeleteDynamic = GelDelete; export type AnyGelDeleteBase = GelDeleteBase; export interface GelDeleteBase | undefined = undefined, TDynamic extends boolean = false, TExcludedMethods extends string = never> extends QueryPromise : TReturning[]>, RunnableQuery : TReturning[], 'gel'>, SQLWrapper { readonly _: { dialect: 'gel'; readonly table: TTable; readonly queryResult: TQueryResult; readonly returning: TReturning; readonly dynamic: TDynamic; readonly excludedMethods: TExcludedMethods; readonly result: TReturning extends undefined ? GelQueryResultKind : TReturning[]; }; } export declare class GelDeleteBase | undefined = undefined, TDynamic extends boolean = false, TExcludedMethods extends string = never> extends QueryPromise : TReturning[]> implements RunnableQuery : TReturning[], 'gel'>, SQLWrapper { private session; private dialect; static readonly [entityKind]: string; private config; constructor(table: TTable, session: GelSession, dialect: GelDialect, withList?: Subquery[]); /** * Adds a `where` clause to the query. * * Calling this method will delete only those rows that fulfill a specified condition. * * See docs: {@link https://orm.drizzle.team/docs/delete} * * @param where the `where` clause. * * @example * You can use conditional operators and `sql function` to filter the rows to be deleted. * * ```ts * // Delete all cars with green color * await db.delete(cars).where(eq(cars.color, 'green')); * // or * await db.delete(cars).where(sql`${cars.color} = 'green'`) * ``` * * You can logically combine conditional operators with `and()` and `or()` operators: * * ```ts * // Delete all BMW cars with a green color * await db.delete(cars).where(and(eq(cars.color, 'green'), eq(cars.brand, 'BMW'))); * * // Delete all cars with the green or blue color * await db.delete(cars).where(or(eq(cars.color, 'green'), eq(cars.color, 'blue'))); * ``` */ where(where: SQL | undefined): GelDeleteWithout; /** * Adds a `returning` clause to the query. * * Calling this method will return the specified fields of the deleted rows. If no fields are specified, all fields will be returned. * * See docs: {@link https://orm.drizzle.team/docs/delete#delete-with-return} * * @example * ```ts * // Delete all cars with the green color and return all fields * const deletedCars: Car[] = await db.delete(cars) * .where(eq(cars.color, 'green')) * .returning(); * * // Delete all cars with the green color and return only their id and brand fields * const deletedCarsIdsAndBrands: { id: number, brand: string }[] = await db.delete(cars) * .where(eq(cars.color, 'green')) * .returning({ id: cars.id, brand: cars.brand }); * ``` */ returning(): GelDeleteReturningAll; returning(fields: TSelectedFields): GelDeleteReturning; toSQL(): Query; prepare(name: string): GelDeletePrepare; execute: ReturnType['execute']; $dynamic(): GelDeleteDynamic; }