2016-03-15 14:02:34 +01:00
|
|
|
-- | This module provides the functions to parse and execute @GraphQL@ queries.
|
2019-07-14 05:58:05 +02:00
|
|
|
module Language.GraphQL
|
|
|
|
( graphql
|
|
|
|
, graphqlSubs
|
|
|
|
) where
|
2016-02-05 12:32:35 +01:00
|
|
|
|
|
|
|
import qualified Data.Aeson as Aeson
|
2020-05-21 10:20:59 +02:00
|
|
|
import Data.HashMap.Strict (HashMap)
|
2020-05-10 18:32:58 +02:00
|
|
|
import Data.Text (Text)
|
2020-05-21 10:20:59 +02:00
|
|
|
import Language.GraphQL.AST.Document
|
|
|
|
import Language.GraphQL.AST.Parser
|
2019-08-30 07:26:04 +02:00
|
|
|
import Language.GraphQL.Error
|
2019-07-07 06:31:53 +02:00
|
|
|
import Language.GraphQL.Execute
|
2020-05-21 10:20:59 +02:00
|
|
|
import Language.GraphQL.Execute.Coerce
|
2020-05-14 09:17:14 +02:00
|
|
|
import Language.GraphQL.Type.Schema
|
2019-08-30 07:26:04 +02:00
|
|
|
import Text.Megaparsec (parse)
|
2016-03-12 00:59:51 +01:00
|
|
|
|
2019-08-30 07:26:04 +02:00
|
|
|
-- | If the text parses correctly as a @GraphQL@ query the query is
|
2020-06-03 07:20:38 +02:00
|
|
|
-- executed using the given 'Schema'.
|
2020-02-01 20:46:35 +01:00
|
|
|
graphql :: Monad m
|
2020-05-14 09:17:14 +02:00
|
|
|
=> Schema m -- ^ Resolvers.
|
2020-05-10 18:32:58 +02:00
|
|
|
-> Text -- ^ Text representing a @GraphQL@ request document.
|
2019-08-30 07:26:04 +02:00
|
|
|
-> m Aeson.Value -- ^ Response.
|
2020-05-21 10:20:59 +02:00
|
|
|
graphql = flip graphqlSubs (mempty :: Aeson.Object)
|
2016-02-15 14:25:15 +01:00
|
|
|
|
2019-08-30 07:26:04 +02:00
|
|
|
-- | If the text parses correctly as a @GraphQL@ query the substitution is
|
|
|
|
-- applied to the query and the query is then executed using to the given
|
2020-06-03 07:20:38 +02:00
|
|
|
-- 'Schema'.
|
2020-05-21 10:20:59 +02:00
|
|
|
graphqlSubs :: (Monad m, VariableValue a)
|
2020-05-14 09:17:14 +02:00
|
|
|
=> Schema m -- ^ Resolvers.
|
2020-05-21 10:20:59 +02:00
|
|
|
-> HashMap Name a -- ^ Variable substitution function.
|
2020-05-10 18:32:58 +02:00
|
|
|
-> Text -- ^ Text representing a @GraphQL@ request document.
|
2019-08-30 07:26:04 +02:00
|
|
|
-> m Aeson.Value -- ^ Response.
|
|
|
|
graphqlSubs schema f
|
|
|
|
= either parseError (execute schema f)
|
2019-06-21 10:44:58 +02:00
|
|
|
. parse document ""
|