sqel-0.0.1.0: lib/Sqel.hs
module Sqel (
module Sqel.Data.Dd,
module Sqel.Data.Sel,
module Sqel.Type,
module Sqel.Merge,
module Sqel.Prim,
module Sqel.Product,
module Sqel.Sum,
module Sqel.Comp,
module Sqel.Data.Uid,
module Sqel.Uid,
module Sqel.Names,
module Sqel.Column,
module Sqel.Data.Mods,
module Sqel.Query.Combinators,
module Sqel.Data.Order,
module Sqel.Data.Migration,
module Sqel.Migration.Table,
module Sqel.Sql,
module Sqel.Data.Codec,
module Sqel.PgType,
module Sqel.Query,
module Sqel.Class.MatchView,
module Sqel.Data.TableSchema,
module Sqel.Data.Projection,
module Sqel.Data.QuerySchema,
) where
import Sqel.Class.MatchView (HasField, HasPath)
import Sqel.Column (nullable, nullableAs, pgDefault, pk, tableName)
import Sqel.Comp (typePrefix)
import Sqel.Data.Codec (FullCodec)
import Sqel.Data.Dd (Dd (Dd), Sqel, Sqel', (:>) ((:>)))
import Sqel.Data.Migration (Migrations, migrate, noMigrations)
import Sqel.Data.Mods (
ArrayColumn,
EnumColumn,
Ignore,
Newtype,
NoMods,
Nullable,
PgDefault,
PrimaryKey,
ReadShowColumn,
SetTableName,
Unique,
)
import Sqel.Data.Order (Order (..))
import Sqel.Data.Projection (Projection)
import Sqel.Data.QuerySchema (QuerySchema, emptyQuerySchema)
import Sqel.Data.Sel (Sel (..), TSel (..))
import Sqel.Data.TableSchema (TableSchema)
import Sqel.Data.Uid (Uid (Uid), Uuid)
import Sqel.Merge (merge)
import Sqel.Migration.Table (migrateAuto)
import Sqel.Names (named, typeAs)
import Sqel.PgType (CheckedProjection, MkTableSchema (tableSchema), fullProjection, projection, toFullProjection)
import Sqel.Prim (
IndexColumn,
IndexColumnWith,
array,
column,
enum,
ignore,
json,
migrateDef,
migrateDelete,
migrateRename,
migrateRenameType,
mods,
prim,
primAs,
primCoerce,
primIndex,
primMod,
primMods,
primNewtype,
primNewtypes,
primNullable,
prims,
readShow,
)
import Sqel.Product (prod, prodAs, prodSel)
import Sqel.Query (CheckQuery (checkQuery), EmptyQuery, emptyQuery, primIdQuery)
import Sqel.Query.Combinators
import Sqel.Sql
import Sqel.Sum (con, con1, con1As, conAs, indexPrefix, mergeSum, sum, sumAs, sumWith)
import Sqel.Type (
MSelect,
Merge,
Mod,
Mods,
ModsR,
Name,
Prim,
PrimNewtype,
PrimSel,
PrimUnused,
Prod,
ProdPrims,
ProdPrimsNewtype,
TypeSel,
type (*>),
type (>),
)
import Sqel.Uid (UidDd, uid, uidAs)