Module

Main

Package
purescript-sql
Repository
joneshf/purescript-typelevel-sql

#main Source

main :: forall e. Eff (console :: CONSOLE | e) Unit

#Query Source

type Query = (SELECT (bar :: String, "corge.foo" :: Boolean, "quux.foo" :: Int)) # (FROM Quux) # (JOIN Corge) # (LIMIT TWO)

#Quux Source

type Quux = Table "quux" (bar :: String, baz :: Boolean, foo :: Int)

#Corge Source

type Corge = Table "corge" (foo :: Boolean)