mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 20:41:49 +03:00
aac64f2c81
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/1616 GitOrigin-RevId: f7eefd2367929209aa77895ea585e96a99a78d47
40 lines
1.2 KiB
Haskell
40 lines
1.2 KiB
Haskell
module Hasura.GraphQL.Context
|
|
( RoleContext (..),
|
|
GQLContext (..),
|
|
ParserFn,
|
|
)
|
|
where
|
|
|
|
import Data.Aeson qualified as J
|
|
import Data.Aeson.TH
|
|
import Hasura.GraphQL.Namespace
|
|
import Hasura.GraphQL.Parser
|
|
import Hasura.Prelude
|
|
import Hasura.RQL.IR qualified as IR
|
|
import Language.GraphQL.Draft.Syntax qualified as G
|
|
|
|
-- | For storing both a normal GQLContext and one for the backend variant.
|
|
-- Currently, this is to enable the backend variant to have certain insert
|
|
-- permissions which the frontend variant does not.
|
|
data RoleContext a = RoleContext
|
|
{ -- | The default context for normal sessions
|
|
_rctxDefault :: !a,
|
|
-- | The context for sessions with backend privilege.
|
|
_rctxBackend :: !(Maybe a)
|
|
}
|
|
deriving (Show, Eq, Functor, Foldable, Traversable)
|
|
|
|
$(deriveToJSON hasuraJSON ''RoleContext)
|
|
|
|
data GQLContext = GQLContext
|
|
{ gqlQueryParser :: ParserFn (RootFieldMap (IR.QueryRootField UnpreparedValue)),
|
|
gqlMutationParser :: Maybe (ParserFn (RootFieldMap (IR.MutationRootField UnpreparedValue)))
|
|
}
|
|
|
|
instance J.ToJSON GQLContext where
|
|
toJSON GQLContext {} = J.String "The GraphQL schema parsers"
|
|
|
|
type ParserFn a =
|
|
G.SelectionSet G.NoFragments Variable ->
|
|
Either (NESeq ParseError) a
|