Skip to content

Instantly share code, notes, and snippets.

@amitaibu
Created January 7, 2016 22:34
Show Gist options
  • Save amitaibu/de6496b54ba422c859b6 to your computer and use it in GitHub Desktop.
Save amitaibu/de6496b54ba422c859b6 to your computer and use it in GitHub Desktop.
getHomeR :: Handler Html
getHomeR = do
blogs <- runDB
$ E.select
$ E.from $ \(blog `E.InnerJoin` author) -> do
E.on $ blog ^. BlogAuthor E.==. author ^. AuthorId
E.where_ $ author ^. AuthorId E.>. (E.val 1) -- how to get ID 1
E.limit 5
return
( blog ^. BlogId
, blog ^. BlogTitle
, author ^. AuthorName
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment