Skip to main content
Module

x/denodb/lib/query-builder.ts>QueryDescription

MySQL, SQLite, MariaDB, PostgreSQL and MongoDB ORM for Deno
Latest
type alias QueryDescription
import { type QueryDescription } from "https://deno.land/x/denodb@v1.4.0/lib/query-builder.ts";
definition: { schema: ModelSchema; type?: QueryType; table?: string; select?: (string | FieldAlias)[]; orderBy?: OrderByClauses; groupBy?: string; wheres?: WhereClause[]; whereIn?: WhereInClause; joins?: JoinClause[]; leftOuterJoins?: JoinClause[]; leftJoins?: JoinClause[]; aggregatorField?: string; limit?: number; offset?: number; ifExists?: boolean; fields?: ModelFields; fieldsDefaults?: ModelDefaults; timestamps?: boolean; values?: Values | Values[]; }