Created
December 18, 2015 19:59
-
-
Save codedmart/a50ad8136482f7828983 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- | Run a given query and return a Result | |
-- | |
-- >>> run h $ num 1 :: IO Int | |
-- 1 | |
-- | |
-- Due to differences in the response from aeson 0.10 and 0.9 and below | |
-- we use wildcards to catch a few parts of the error that are similar | |
-- >>> run h $ str "foo" :: IO (Either RethinkDBError Int) | |
-- ...Unexpected response... | |
-- | |
-- >>> run h $ str "foo" :: IO (Maybe Int) | |
-- Nothing | |
-- | |
-- >>> run h $ str "foo" :: IO Int | |
-- ...Unexpected response... | |
-- | |
-- >>> c <- run h $ table "users" # orderBy [asc "name"] # (!"name"):: IO (Cursor Datum) | |
-- >>> next c | |
-- Just "bill" | |
-- >>> collect c | |
-- ["nancy","sabrina"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment