graphql-engine/server/src-lib/Hasura/RQL/DDL/Relationship/Rename.hs
Alexis King ed26da59a6 Add support for GraphQL enum types via enum table references
These changes also add a new type, PGColumnType, between PGColInfo and
PGScalarType, and they process PGRawColumnType values into PGColumnType
values during schema cache generation.
2019-08-26 00:54:56 -05:00

62 lines
1.7 KiB
Haskell

module Hasura.RQL.DDL.Relationship.Rename
(runRenameRel)
where
import Hasura.EncJSON
import Hasura.Prelude
import Hasura.RQL.DDL.Relationship (validateRelP1)
import Hasura.RQL.DDL.Relationship.Types
import Hasura.RQL.DDL.Schema.Rename (renameRelInCatalog)
import Hasura.RQL.DDL.Schema.Table (buildSchemaCache,
checkNewInconsistentMeta)
import Hasura.RQL.Types
import Hasura.SQL.Types
import qualified Data.HashMap.Strict as HM
renameRelP2
:: ( QErrM m
, MonadTx m
, CacheRWM m
, MonadIO m
, HasHttpManager m
, HasSQLGenCtx m
)
=> QualifiedTable -> RelName -> RelInfo -> m ()
renameRelP2 qt newRN relInfo = do
oldSC <- askSchemaCache
tabInfo <- askTabInfo qt
-- check for conflicts in fieldInfoMap
case HM.lookup (fromRel newRN) $ _tiFieldInfoMap tabInfo of
Nothing -> return ()
Just _ ->
throw400 AlreadyExists $ "cannot rename relationship " <> oldRN
<<> " to " <> newRN <<> " in table " <> qt <<>
" as a column/relationship with the name already exists"
-- update catalog
renameRelInCatalog qt oldRN newRN
-- update schema cache
buildSchemaCache
newSC <- askSchemaCache
-- check for new inconsistency
checkNewInconsistentMeta oldSC newSC
where
oldRN = riName relInfo
runRenameRel
:: ( QErrM m
, CacheRWM m
, MonadTx m
, UserInfoM m
, MonadIO m
, HasHttpManager m
, HasSQLGenCtx m
)
=> RenameRel -> m EncJSON
runRenameRel defn = do
ri <- validateRelP1 qt rn
renameRelP2 qt newRN ri
return successMsg
where
RenameRel qt rn newRN = defn