mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
b167120f96
We'll see if this improves compile times at all, but I think it's worth doing as at least the most minimal form of module documentation. This was accomplished by first compiling everything with -ddump-minimal-imports, and then a bunch of scripting (with help from ormolu) **EDIT** it doesn't seem to improve CI compile times but the noise floor is high as it looks like we're not caching library dependencies anymore PR-URL: https://github.com/hasura/graphql-engine-mono/pull/2730 GitOrigin-RevId: 667eb8de1e0f1af70420cbec90402922b8b84cb4
72 lines
1.8 KiB
Haskell
72 lines
1.8 KiB
Haskell
module Hasura.GraphQL.Transport.Backend
|
|
( BackendTransport (..),
|
|
)
|
|
where
|
|
|
|
import Data.ByteString qualified as B
|
|
import Hasura.Base.Error
|
|
import Hasura.EncJSON
|
|
import Hasura.GraphQL.Execute.Backend
|
|
import Hasura.GraphQL.Execute.LiveQuery.Plan
|
|
import Hasura.GraphQL.Logging (MonadQueryLog)
|
|
import Hasura.GraphQL.Namespace (RootFieldAlias)
|
|
import Hasura.GraphQL.Transport.HTTP.Protocol
|
|
import Hasura.Logging qualified as L
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.Types.Backend
|
|
import Hasura.SQL.Backend
|
|
import Hasura.Server.Types (RequestId)
|
|
import Hasura.Session
|
|
import Hasura.Tracing
|
|
|
|
-- | This typeclass enacapsulates how a given backend sends queries and mutations over the
|
|
-- network. Each backend is currently responsible for both logging and tracing, for now.
|
|
class BackendExecute b => BackendTransport (b :: BackendType) where
|
|
runDBQuery ::
|
|
forall m.
|
|
( MonadIO m,
|
|
MonadError QErr m,
|
|
MonadQueryLog m,
|
|
MonadTrace m
|
|
) =>
|
|
RequestId ->
|
|
GQLReqUnparsed ->
|
|
RootFieldAlias ->
|
|
UserInfo ->
|
|
L.Logger L.Hasura ->
|
|
SourceConfig b ->
|
|
ExecutionMonad b EncJSON ->
|
|
Maybe (PreparedQuery b) ->
|
|
m (DiffTime, EncJSON)
|
|
runDBMutation ::
|
|
forall m.
|
|
( MonadIO m,
|
|
MonadError QErr m,
|
|
MonadQueryLog m,
|
|
MonadTrace m
|
|
) =>
|
|
RequestId ->
|
|
GQLReqUnparsed ->
|
|
RootFieldAlias ->
|
|
UserInfo ->
|
|
L.Logger L.Hasura ->
|
|
SourceConfig b ->
|
|
ExecutionMonad b EncJSON ->
|
|
Maybe (PreparedQuery b) ->
|
|
m (DiffTime, EncJSON)
|
|
runDBSubscription ::
|
|
forall m.
|
|
MonadIO m =>
|
|
SourceConfig b ->
|
|
MultiplexedQuery b ->
|
|
-- | WARNING: Postgres-specific, ignored by other backends
|
|
[(CohortId, CohortVariables)] ->
|
|
m (DiffTime, Either QErr [(CohortId, B.ByteString)])
|
|
runDBQueryExplain ::
|
|
forall m.
|
|
( MonadIO m,
|
|
MonadError QErr m
|
|
) =>
|
|
DBStepInfo b ->
|
|
m EncJSON
|