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 = { aliasName :: String, expr :: a }

#VariRelR Source

type VariRelR = { alias :: Maybe String, vari :: String }

#TableRelR Source