mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 21:12:09 +03:00
f2a5d7cef3
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/6822 Co-authored-by: paritosh-08 <85472423+paritosh-08@users.noreply.github.com> Co-authored-by: Naveen Naidu <30195193+Naveenaidu@users.noreply.github.com> Co-authored-by: Sooraj <8408875+soorajshankar@users.noreply.github.com> Co-authored-by: Varun Choudhary <68095256+Varun-Choudhary@users.noreply.github.com> Co-authored-by: Sean Park-Ross <94021366+seanparkross@users.noreply.github.com> GitOrigin-RevId: 61cfc00a97de88df1ede3f26829a0d78ec9c0bc5
84 lines
2.3 KiB
Haskell
84 lines
2.3 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.Subscription.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) ->
|
|
ResolvedConnectionTemplate 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) ->
|
|
ResolvedConnectionTemplate b ->
|
|
m (DiffTime, EncJSON)
|
|
runDBSubscription ::
|
|
forall m.
|
|
MonadIO m =>
|
|
SourceConfig b ->
|
|
MultiplexedQuery b ->
|
|
-- | WARNING: Postgres-specific, ignored by other backends
|
|
[(CohortId, CohortVariables)] ->
|
|
ResolvedConnectionTemplate b ->
|
|
m (DiffTime, Either QErr [(CohortId, B.ByteString)])
|
|
runDBStreamingSubscription ::
|
|
forall m.
|
|
MonadIO m =>
|
|
SourceConfig b ->
|
|
MultiplexedQuery b ->
|
|
-- | WARNING: Postgres-specific, ignored by other backends
|
|
[(CohortId, CohortVariables)] ->
|
|
ResolvedConnectionTemplate b ->
|
|
m (DiffTime, Either QErr [(CohortId, B.ByteString, CursorVariableValues)])
|
|
runDBQueryExplain ::
|
|
forall m.
|
|
( MonadIO m,
|
|
MonadError QErr m
|
|
) =>
|
|
DBStepInfo b ->
|
|
m EncJSON
|