Module

SqlSquared.Signature.Relation

Package
purescript-sql-squared
Repository
slamdata/purescript-sql-squared

#JoinRelR Source

type JoinRelR a = { clause :: a, joinType :: JoinType, left :: Relation a, right :: Relation a }

#ExprRelR Source

type ExprRelR a = { alias :: Ident, expr :: a }

#VarRelR Source

type VarRelR = { alias :: Maybe Ident, var :: Ident }

#TableRelR Source

type TableRelR = { alias :: Maybe Ident, path :: Either AnyDir AnyFile }

#genRelation Source