UNPKG

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.

18 lines (16 loc) 407 B
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';