Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/GraphQL/Internal/Execution.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ module GraphQL.Internal.Execution

import Protolude

import qualified Data.Aeson as Aeson
import qualified Data.Map as Map
import GraphQL.Value
( Name
Expand Down Expand Up @@ -109,3 +110,7 @@ instance GraphQLError ExecutionError where
-- GraphQL allows the values of variables to be specified, but doesn't provide
-- a way for doing so in the language.
type VariableValues = Map Variable Value

-- | The raw (textual and/or aeson based) version of the 'Request' datatype.
-- See <http://graphql.org/learn/serving-over-http/#post-request>.
data RawPostRequest = RawPostRequest Text (Maybe Text) Aeson.Object deriving (Eq, Show)