CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
subquery.js25 linesDownload Raw Back to drizzle-orm
1import { entityKind } from "./entity.js";2class Subquery {3  static [entityKind] = "Subquery";4  constructor(sql, fields, alias, isWith = false, usedTables = []) {5    this._ = {6      brand: "Subquery",7      sql,8      selectedFields: fields,9      alias,10      isWith,11      usedTables12    };13  }14  // getSQL(): SQL<unknown> {15  // 	return new SQL([this]);16  // }17}18class WithSubquery extends Subquery {19  static [entityKind] = "WithSubquery";20}21export {22  Subquery,23  WithSubquery24};25//# sourceMappingURL=subquery.js.map