Skip to content

Instantly share code, notes, and snippets.

@codedmart
Created December 18, 2015 19:59
Show Gist options
  • Save codedmart/a50ad8136482f7828983 to your computer and use it in GitHub Desktop.
Save codedmart/a50ad8136482f7828983 to your computer and use it in GitHub Desktop.
-- | 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