agnostic-query
Version:
Type-safe fluent builder for portable query schemas. Runtime-agnostic, database-agnostic — the same QuerySchema drives Drizzle, Kysely, db0, or raw SQL.
7 lines (6 loc) • 398 B
TypeScript
export type { QuerySchema } from './core';
export { aq } from './core';
export type { QueryOrderBy } from './core/order-by';
export type { FieldPath, FieldPathByShape, GetPathType, SchemaShape, } from './core/schema';
export type { QueryWhere, UnaryComparisonOp, WhereComparisonOp, WhereOp, } from './core/where';
export { createExpr, findWhere, newComparisonWhere, newWhere } from './core/where';