Put new functions into proper sections
This commit is contained in:
parent
f4e9883411
commit
f3e1f3b42d
1 changed files with 4 additions and 5 deletions
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue