Put new functions into proper sections

This commit is contained in:
Victor Denisov 2016-06-19 19:19:40 -07:00
parent f4e9883411
commit f3e1f3b42d
No known key found for this signature in database
GPG key ID: 89596023D19E4238

View file

@ -21,9 +21,10 @@ module Database.MongoDB.Query (
-- ** Insert -- ** Insert
insert, insert_, insertMany, insertMany_, insertAll, insertAll_, insert, insert_, insertMany, insertMany_, insertAll, insertAll_,
-- ** Update -- ** Update
save, replace, repsert, upsert, Modifier, modify, save, replace, repsert, upsert, Modifier, modify, updateMany, updateAll,
UpdateResult, UpdateOption(..),
-- ** Delete -- ** Delete
delete, deleteOne, delete, deleteOne, deleteMany, deleteAll, DeleteResult, DeleteOption(..),
-- * Read -- * Read
-- ** Query -- ** Query
Query(..), QueryOption(NoCursorTimeout, TailableCursor, AwaitData, Partial), Query(..), QueryOption(NoCursorTimeout, TailableCursor, AwaitData, Partial),
@ -42,9 +43,7 @@ module Database.MongoDB.Query (
MRResult, mapReduce, runMR, runMR', MRResult, mapReduce, runMR, runMR',
-- * Command -- * Command
Command, runCommand, runCommand1, Command, runCommand, runCommand1,
eval, retrieveServerData, updateMany, updateAll, UpdateResult, eval, retrieveServerData
UpdateOption(..),
deleteMany, deleteAll, DeleteResult, DeleteOption(..)
) where ) where
import Prelude hiding (lookup) import Prelude hiding (lookup)