mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-19 05:21:47 +03:00
a66fb42ce2
* Separate DB and metadata migrations * Refactor Migrate.hs to generate list of migrations at compile-time * Replace ginger with shakespeare to improve performance * Improve migration log messages
22 lines
860 B
Haskell
22 lines
860 B
Haskell
module Hasura.RQL.DDL.Schema.Cache where
|
|
|
|
import Hasura.Prelude
|
|
|
|
import Hasura.Db
|
|
import Hasura.RQL.Types
|
|
|
|
type CacheBuildM m
|
|
= (CacheRWM m, MonadTx m, MonadIO m, HasHttpManager m, HasSQLGenCtx m, HasSystemDefined m)
|
|
|
|
buildSchemaCacheStrict :: (CacheBuildM m) => m ()
|
|
buildSchemaCacheFor :: (CacheBuildM m) => MetadataObjId -> m ()
|
|
buildSchemaCache :: (CacheBuildM m) => m ()
|
|
buildSchemaCacheWithoutSetup :: (CacheBuildM m) => m ()
|
|
|
|
withNewInconsistentObjsCheck :: (QErrM m, CacheRM m) => m a -> m a
|
|
withMetadataCheck :: (CacheBuildM m) => Bool -> m a -> m a
|
|
purgeDependentObject :: (CacheRWM m, MonadTx m) => SchemaObjId -> m ()
|
|
|
|
withSchemaObject :: (QErrM m, CacheRWM m) => (Text -> InconsistentMetadataObj) -> m a -> m (Maybe a)
|
|
withSchemaObject_ :: (QErrM m, CacheRWM m) => (Text -> InconsistentMetadataObj) -> m () -> m ()
|