haskell-neo4j-client 0.3.0.2 → 0.3.0.3
raw patch · 2 files changed
+5/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
haskell-neo4j-client.cabal view
@@ -1,5 +1,5 @@ name: haskell-neo4j-client-version: 0.3.0.2+version: 0.3.0.3 synopsis: A Haskell neo4j client description: Library to interact with Neo4j databases.
src/Database/Neo4j/Transactional/Cypher.hs view
@@ -6,6 +6,7 @@ -- | Module to provide Cypher support using the transactional endpoint. -- -- Example:+-- -- > import qualified Database.Neo4j.Transactional.Cypher as T -- > -- > withConnection host port $ do@@ -22,12 +23,13 @@ -- > -- Transactions are implicitly commited/rollbacked (in case of exception) -- > -- but can be explicitly committed and rollbacked -- > return (result, result2)--- > ... module Database.Neo4j.Transactional.Cypher ( -- * Types Result(..), Stats(..), ParamValue(..), Params, newparam, emptyStats, -- * Sending queries- loneQuery, isSuccess, fromResult, fromSuccess, runTransaction, cypher, rollback, commit, keepalive, commitWith+ loneQuery, runTransaction, cypher, rollback, commit, keepalive, commitWith,+ -- * Aux functions+ isSuccess, fromResult, fromSuccess ) where import Control.Monad.Reader